commit 7eb1cb818f0115e2166feb6738cb6e516f102805 Author: wed150 Date: Sat May 23 02:03:44 2026 +0800 feat: init diff --git a/css/style.umd.css b/css/style.umd.css new file mode 100644 index 0000000..0c83d95 --- /dev/null +++ b/css/style.umd.css @@ -0,0 +1,600 @@ +/* CSS 变量定义 - 主题颜色 */ +:root { + /* 亮色主题 */ + --bg-primary: #ffffff; + --bg-secondary: #f8f9fa; + --bg-tertiary: #e9ecef; + --text-primary: #212529; + --text-secondary: #6c757d; + --border-color: #dee2e6; + --accent-color: #007bff; + --accent-hover: #0056b3; + --success-color: #28a745; + --warning-color: #ffc107; + --danger-color: #dc3545; + --drop-zone-border: #ced4da; + --shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15); + --transition: all 0.3s ease; + --btn-hover-bg: rgba(0, 123, 255, 0.9); + --btn-danger-hover-bg: rgba(220, 53, 69, 0.9); +} + + +/* 暗色主题 */ +@media (prefers-color-scheme: dark) { + :root { + --bg-primary: #121212; + --bg-secondary: #1e1e1e; + --bg-tertiary: #2d2d2d; + --text-primary: #e0e0e0; + --text-secondary: #b0b0b0; + --border-color: #404040; + --accent-color: #ff9800; + --accent-hover: #f57c00; + --success-color: #20c997; + --warning-color: #ffc107; + --danger-color: #fa5252; + --drop-zone-border: #495057; + --shadow: 0 2px 4px rgba(0, 0, 0, 0.3); + --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.4); + --btn-hover-bg: rgba(255, 152, 0, 0.65); + --btn-danger-hover-bg: rgba(250, 82, 82, 0.65); + } +} + +/* 全局样式重置 */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; + line-height: 1.6; + color: var(--text-primary); + background-color: var(--bg-primary); + padding: 20px; + transition: var(--transition); +} + +/* 容器样式 */ +.container { + max-width: 800px; + margin: 0 auto; + background-color: var(--bg-secondary); + border-radius: 12px; + padding: 30px 30px 17px 30px; + box-shadow: var(--shadow-lg); +} + +/* 标题样式 */ +h1 { + color: var(--text-primary); + margin-bottom: 30px; + font-size: 28px; + font-weight: 700; + text-align: center; +} + +h2 { + color: var(--text-primary); + margin: 0px 0 20px; + font-size: 22px; + font-weight: 600; + border-bottom: 2px solid var(--accent-color); + padding-bottom: 10px; +} + +h3 { + color: var(--text-primary); + margin: 10px 0 10px; + font-size: 18px; + font-weight: 500; +} + +/* 部分样式 */ +.section { + background-color: var(--bg-tertiary); + border-radius: 8px; + padding: 20px; + margin-bottom: 15px; + box-shadow: var(--shadow); +} + +/* 拖放区域样式 */ +#dropZone { + border: 2px dashed var(--drop-zone-border); + border-radius: 8px; + padding: 30px 20px; + margin: 15px 0; + text-align: center; + background-color: var(--bg-primary); + cursor: pointer; + transition: var(--transition); +} + +#dropZone:hover { + border-color: var(--accent-color); + background-color: rgba(0, 123, 255, 0.05); +} + +#dropZone.drag-over { + border-color: var(--accent-color); + background-color: rgba(0, 123, 255, 0.1); +} + +/* 文件列表样式 */ +#fileList { + margin-top: 10px; +} + +.file-item { + display: flex; + justify-content: space-between; + align-items: center; + background-color: var(--bg-primary); + border: 1px solid var(--border-color); + border-radius: 6px; + padding: 12px 15px; + margin-bottom: 10px; + transition: var(--transition); +} + +.file-item:hover { + box-shadow: var(--shadow); +} + +.file-info { + display: flex; + align-items: center; + gap: 10px; +} + +.file-name { + font-weight: 500; +} + +.file-size { + color: var(--text-secondary); + font-size: 14px; +} + +.file-type-badge { + display: inline-block; + padding: 2px 8px; + border-radius: 12px; + font-size: 11px; + font-weight: 600; + color: white; + margin-left: 5px; +} + +/* 按钮样式 - 统一线框风格 */ +button { + background-color: transparent; + color: var(--accent-color); + border: 1.5px solid var(--accent-color); + border-radius: 6px; + padding: 10px 20px; + font-size: 14px; + font-weight: 500; + cursor: pointer; + transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease; + box-shadow: none; +} + +button:hover { + background-color: var(--btn-hover-bg); + color: #fff; +} + +button:active { + background-color: var(--accent-color); + color: #fff; + transform: scale(0.97); +} + +button.secondary { + color: var(--text-primary); + border-color: var(--border-color); + background-color: transparent; +} + +button.secondary:hover { + background-color: var(--bg-tertiary); +} + +button.secondary:active { + background-color: var(--border-color); + color: var(--text-primary); +} + +button.danger { + color: var(--danger-color); + border-color: var(--danger-color); + background-color: transparent; +} + +button.danger:hover { + background-color: var(--btn-danger-hover-bg); + color: #fff; +} + +button.danger:active { + background-color: var(--danger-color); + color: #fff; +} + +/* 输入框样式 */ +input[type="text"] { + background-color: var(--bg-primary); + color: var(--text-primary); + border: 1px solid var(--border-color); + border-radius: 6px; + padding: 10px 15px; + font-size: 14px; + width: 100%; + max-width: 300px; + transition: var(--transition); +} + +input[type="text"]:focus { + outline: none; + border-color: var(--accent-color); + box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1); +} + +/* 进度条样式 */ +.progress-container { + width: 100%; + height: 12px; + background-color: var(--bg-primary); + border: 1px solid var(--border-color); + border-radius: 6px; + overflow: hidden; + margin: 15px 0; +} + +#progressFill { + height: 100%; + background-color: var(--accent-color); + width: 0%; + transition: width 0.3s ease; + border-radius: 5px; +} + +/* 状态消息样式 */ +#statusMessage { + margin-top: 10px; + padding: 10px 15px; + border-radius: 6px; + font-size: 14px; + font-weight: 500; +} + +/* 下载区域样式 */ +#downloadArea { + margin-top: 30px; + padding: 20px; + background-color: rgba(40, 167, 69, 0.1); + border: 1px solid var(--success-color); + border-radius: 8px; + text-align: center; +} + +#downloadArea h3 { + color: var(--success-color); + margin-bottom: 15px; +} + +#downloadArea p { + color: var(--success-color); + margin-bottom: 15px; +} +/* 设备检测 - 平板设备 */ +body.device-tablet { + padding: 0; +} + +body.device-tablet .container { + max-width: none; + width: 100%; + padding: 20px; + margin: 0; + border-radius: 0; +} + +body.device-tablet h1 { + font-size: 24px; +} + +body.device-tablet h2 { + font-size: 20px; +} + +body.device-tablet h3 { + font-size: 16px; +} + +body.device-tablet #dropZone { + padding: 30px 15px; +} + +body.device-tablet .file-item { + flex-direction: column; + align-items: flex-start; + gap: 10px; +} + +body.device-tablet .file-item button { + align-self: flex-end; +} + +/* 设备检测 - 移动设备 */ +body.device-mobile { + padding: 5px; +} + +body.device-mobile .container { + max-width: 100%; + padding: 12px; + margin: 0; + border-radius: 6px; +} + +body.device-mobile h1 { + font-size: 18px; + margin-bottom: 15px; +} + +body.device-mobile h2 { + font-size: 16px; + margin: 15px 0 10px; + padding-bottom: 8px; +} + +body.device-mobile h3 { + font-size: 14px; + margin: 8px 0; +} + +body.device-mobile .section { + padding: 12px; + margin-bottom: 12px; +} + +body.device-mobile #dropZone { + padding: 20px 10px; + margin: 10px 0; +} + +body.device-mobile #dropZone button { + width: 100%; + margin-top: 10px; + padding: 10px; + font-size: 14px; +} + +body.device-mobile input[type="text"] { + max-width: 100%; + padding: 10px 12px; + font-size: 14px; +} + +body.device-mobile button { + width: 100%; + padding: 10px; + font-size: 14px; +} + +body.device-mobile .section button, +body.device-mobile #dropZone button { + width: 100%; +} + +body.device-mobile .file-item { + padding: 6px 8px; + margin-bottom: 6px; + flex-direction: row; + align-items: center; + gap: 6px; +} + +body.device-mobile .file-info { + flex-direction: column; + align-items: flex-start; + gap: 2px; + flex: 1; + min-width: 0; +} + +body.device-mobile .file-name { + font-size: 13px; + word-break: break-all; + line-height: 1.3; +} + +body.device-mobile .file-size { + font-size: 11px; +} + +body.device-mobile .file-type-badge { + padding: 2px 5px; + font-size: 9px; + margin-left: 0; + align-self: flex-start; +} + +body.device-mobile .file-item button { + width: auto; + padding: 5px 10px; + font-size: 11px; + min-width: auto; + flex-shrink: 0; + white-space: nowrap; +} + +body.device-mobile .progress-container { + height: 8px; + margin: 10px 0; +} + +body.device-mobile #statusMessage { + font-size: 12px; + padding: 6px 8px; + margin-top: 8px; +} + +body.device-mobile #downloadArea { + padding: 12px; + margin-top: 20px; +} + +body.device-mobile .footer-beian { + margin-top: 0px; +} + +body.device-mobile .footer-beian span { + font-size:8px; +} + +body.device-mobile .footer-beian a { + font-size: 10px; +} + +/* 保留媒体查询作为备用方案,确保兼容性 */ +@media (max-width: 1024px) { + body { + padding: 0; + } + + .container { + max-width: none; + width: 100%; + padding: 20px; + margin: 0; + border-radius: 0; + } +} + +@media (max-width: 480px) { + body { + padding: 5px; + } + + .container { + max-width: 100%; + padding: 12px; + margin: 0; + border-radius: 6px; + } +} + +/* 语言切换按钮 */ +.lang-toggle { + background-color: transparent; + color: var(--accent-color); + border: 1.5px solid var(--accent-color); + border-radius: 16px; + padding: 4px 14px; + font-size: 13px; + font-weight: 600; + cursor: pointer; + transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease; + box-shadow: none; + width: auto; + white-space: nowrap; + flex-shrink: 0; +} + +.lang-toggle:hover { + background-color: var(--btn-hover-bg); + color: #fff; +} + +.lang-toggle:active { + background-color: var(--accent-color); + color: #fff; + transform: scale(0.95); +} + +/* 主题切换按钮 */ +.theme-toggle { + position: absolute; + top: 20px; + right: 20px; + background-color: var(--bg-secondary); + border: 1px solid var(--border-color); + border-radius: 50%; + width: 40px; + height: 40px; + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + transition: var(--transition); + box-shadow: var(--shadow); +} + +.theme-toggle:hover { + background-color: var(--bg-tertiary); + transform: scale(1.05); +} + +/* 底部信息样式 */ +.footer { + text-align: center; + background-color: var(--bg-secondary); + margin-top: 10px; + border-top: 1px solid var(--border-color); + border-radius: 0 0 12px 12px; + box-shadow: none; + font-size: 16px; + color: var(--text-secondary); + width: 100%; +} + +.footer a { + color: var(--text-secondary); + text-decoration: none; + transition: var(--transition); +} + +.footer a:hover { + color: var(--text-primary); + text-decoration: underline; +} + +.footer-links { + margin-bottom: 5px; + margin-top: 10px; + +} +.footer-links a { + color: rgb(178, 94, 247); + transition: rgb(94, 191, 247); +} +.footer-links a:hover { + color: rgb(94, 191, 247); +} + +.footer-beian { + font-size: 12px; +} + +/* 格式提示文字响应式 */ +.format-hint { + font-size: 14px; +} + +body.device-mobile .format-hint { + font-size: 10px; +} + +body.device-mobile .lang-toggle { + width: auto; + padding: 3px 10px; + font-size: 11px; +} diff --git a/data/bedsJ2B.json b/data/bedsJ2B.json new file mode 100644 index 0000000..e6b2774 --- /dev/null +++ b/data/bedsJ2B.json @@ -0,0 +1,18 @@ +{ + "minecraft:white_bed": 0, + "minecraft:orange_bed": 1, + "minecraft:magenta_bed": 2, + "minecraft:light_blue_bed": 3, + "minecraft:yellow_bed": 4, + "minecraft:lime_bed": 5, + "minecraft:pink_bed": 6, + "minecraft:gray_bed": 7, + "minecraft:light_gray_bed": 8, + "minecraft:cyan_bed": 9, + "minecraft:purple_bed": 10, + "minecraft:blue_bed": 11, + "minecraft:brown_bed": 12, + "minecraft:green_bed": 13, + "minecraft:red_bed": 14, + "minecraft:black_bed": 15 +} \ No newline at end of file diff --git a/data/blocksJ2B.json b/data/blocksJ2B.json new file mode 100644 index 0000000..127b4e4 --- /dev/null +++ b/data/blocksJ2B.json @@ -0,0 +1,27916 @@ +{ + "minecraft:air[]": "minecraft:air[]", + "minecraft:stone[]": "minecraft:stone[]", + "minecraft:granite[]": "minecraft:granite[]", + "minecraft:polished_granite[]": "minecraft:polished_granite[]", + "minecraft:diorite[]": "minecraft:diorite[]", + "minecraft:polished_diorite[]": "minecraft:polished_diorite[]", + "minecraft:andesite[]": "minecraft:andesite[]", + "minecraft:polished_andesite[]": "minecraft:polished_andesite[]", + "minecraft:grass_block[snowy=true]": "minecraft:grass_block[]", + "minecraft:grass_block[snowy=false]": "minecraft:grass_block[]", + "minecraft:dirt[]": "minecraft:dirt[]", + "minecraft:coarse_dirt[]": "minecraft:coarse_dirt[]", + "minecraft:podzol[snowy=true]": "minecraft:podzol[]", + "minecraft:podzol[snowy=false]": "minecraft:podzol[]", + "minecraft:cobblestone[]": "minecraft:cobblestone[]", + "minecraft:oak_planks[]": "minecraft:oak_planks[]", + "minecraft:spruce_planks[]": "minecraft:spruce_planks[]", + "minecraft:birch_planks[]": "minecraft:birch_planks[]", + "minecraft:jungle_planks[]": "minecraft:jungle_planks[]", + "minecraft:acacia_planks[]": "minecraft:acacia_planks[]", + "minecraft:cherry_planks[]": "minecraft:cherry_planks[]", + "minecraft:dark_oak_planks[]": "minecraft:dark_oak_planks[]", + "minecraft:pale_oak_wood[axis=x]": "minecraft:pale_oak_wood[pillar_axis=x]", + "minecraft:pale_oak_wood[axis=y]": "minecraft:pale_oak_wood[pillar_axis=y]", + "minecraft:pale_oak_wood[axis=z]": "minecraft:pale_oak_wood[pillar_axis=z]", + "minecraft:pale_oak_planks[]": "minecraft:pale_oak_planks[]", + "minecraft:mangrove_planks[]": "minecraft:mangrove_planks[]", + "minecraft:bamboo_planks[]": "minecraft:bamboo_planks[]", + "minecraft:bamboo_mosaic[]": "minecraft:bamboo_mosaic[]", + "minecraft:oak_sapling[stage=0]": "minecraft:oak_sapling[age_bit=false]", + "minecraft:oak_sapling[stage=1]": "minecraft:oak_sapling[age_bit=true]", + "minecraft:spruce_sapling[stage=0]": "minecraft:spruce_sapling[age_bit=false]", + "minecraft:spruce_sapling[stage=1]": "minecraft:spruce_sapling[age_bit=true]", + "minecraft:birch_sapling[stage=0]": "minecraft:birch_sapling[age_bit=false]", + "minecraft:birch_sapling[stage=1]": "minecraft:birch_sapling[age_bit=true]", + "minecraft:jungle_sapling[stage=0]": "minecraft:jungle_sapling[age_bit=false]", + "minecraft:jungle_sapling[stage=1]": "minecraft:jungle_sapling[age_bit=true]", + "minecraft:acacia_sapling[stage=0]": "minecraft:acacia_sapling[age_bit=false]", + "minecraft:acacia_sapling[stage=1]": "minecraft:acacia_sapling[age_bit=true]", + "minecraft:cherry_sapling[stage=0]": "minecraft:cherry_sapling[age_bit=false]", + "minecraft:cherry_sapling[stage=1]": "minecraft:cherry_sapling[age_bit=true]", + "minecraft:dark_oak_sapling[stage=0]": "minecraft:dark_oak_sapling[age_bit=false]", + "minecraft:dark_oak_sapling[stage=1]": "minecraft:dark_oak_sapling[age_bit=true]", + "minecraft:pale_oak_sapling[stage=0]": "minecraft:pale_oak_sapling[age_bit=false]", + "minecraft:pale_oak_sapling[stage=1]": "minecraft:pale_oak_sapling[age_bit=true]", + "minecraft:mangrove_propagule[age=0,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=1,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=2,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=2]", + "minecraft:mangrove_propagule[age=2,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=2]", + "minecraft:mangrove_propagule[age=2,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=2]", + "minecraft:mangrove_propagule[age=2,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=2]", + "minecraft:mangrove_propagule[age=2,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=2]", + "minecraft:mangrove_propagule[age=2,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=2]", + "minecraft:mangrove_propagule[age=2,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=2]", + "minecraft:mangrove_propagule[age=2,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=2]", + "minecraft:mangrove_propagule[age=3,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=3]", + "minecraft:mangrove_propagule[age=3,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=3]", + "minecraft:mangrove_propagule[age=3,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=3]", + "minecraft:mangrove_propagule[age=3,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=3]", + "minecraft:mangrove_propagule[age=3,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=3]", + "minecraft:mangrove_propagule[age=3,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=3]", + "minecraft:mangrove_propagule[age=3,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=3]", + "minecraft:mangrove_propagule[age=3,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=3]", + "minecraft:mangrove_propagule[age=4,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=4]", + "minecraft:mangrove_propagule[age=4,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=4]", + "minecraft:mangrove_propagule[age=4,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=4]", + "minecraft:mangrove_propagule[age=4,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=4]", + "minecraft:mangrove_propagule[age=4,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=4]", + "minecraft:mangrove_propagule[age=4,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=4]", + "minecraft:mangrove_propagule[age=4,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=4]", + "minecraft:mangrove_propagule[age=4,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=4]", + "minecraft:bedrock[]": "minecraft:bedrock[infiniburn_bit=false]", + "minecraft:water[level=0]": "minecraft:water[liquid_depth=0]", + "minecraft:water[level=1]": "minecraft:flowing_water[liquid_depth=1]", + "minecraft:water[level=2]": "minecraft:flowing_water[liquid_depth=2]", + "minecraft:water[level=3]": "minecraft:flowing_water[liquid_depth=3]", + "minecraft:water[level=4]": "minecraft:flowing_water[liquid_depth=4]", + "minecraft:water[level=5]": "minecraft:flowing_water[liquid_depth=5]", + "minecraft:water[level=6]": "minecraft:flowing_water[liquid_depth=6]", + "minecraft:water[level=7]": "minecraft:flowing_water[liquid_depth=7]", + "minecraft:water[level=8]": "minecraft:flowing_water[liquid_depth=8]", + "minecraft:water[level=9]": "minecraft:flowing_water[liquid_depth=9]", + "minecraft:water[level=10]": "minecraft:flowing_water[liquid_depth=10]", + "minecraft:water[level=11]": "minecraft:flowing_water[liquid_depth=11]", + "minecraft:water[level=12]": "minecraft:flowing_water[liquid_depth=12]", + "minecraft:water[level=13]": "minecraft:flowing_water[liquid_depth=13]", + "minecraft:water[level=14]": "minecraft:flowing_water[liquid_depth=14]", + "minecraft:water[level=15]": "minecraft:flowing_water[liquid_depth=15]", + "minecraft:lava[level=0]": "minecraft:lava[liquid_depth=0]", + "minecraft:lava[level=1]": "minecraft:flowing_lava[liquid_depth=1]", + "minecraft:lava[level=2]": "minecraft:flowing_lava[liquid_depth=2]", + "minecraft:lava[level=3]": "minecraft:flowing_lava[liquid_depth=3]", + "minecraft:lava[level=4]": "minecraft:flowing_lava[liquid_depth=4]", + "minecraft:lava[level=5]": "minecraft:flowing_lava[liquid_depth=5]", + "minecraft:lava[level=6]": "minecraft:flowing_lava[liquid_depth=6]", + "minecraft:lava[level=7]": "minecraft:flowing_lava[liquid_depth=7]", + "minecraft:lava[level=8]": "minecraft:flowing_lava[liquid_depth=8]", + "minecraft:lava[level=9]": "minecraft:flowing_lava[liquid_depth=9]", + "minecraft:lava[level=10]": "minecraft:flowing_lava[liquid_depth=10]", + "minecraft:lava[level=11]": "minecraft:flowing_lava[liquid_depth=11]", + "minecraft:lava[level=12]": "minecraft:flowing_lava[liquid_depth=12]", + "minecraft:lava[level=13]": "minecraft:flowing_lava[liquid_depth=13]", + "minecraft:lava[level=14]": "minecraft:flowing_lava[liquid_depth=14]", + "minecraft:lava[level=15]": "minecraft:flowing_lava[liquid_depth=15]", + "minecraft:sand[]": "minecraft:sand[]", + "minecraft:suspicious_sand[dusted=0]": "minecraft:suspicious_sand[brushed_progress=0,hanging=false]", + "minecraft:suspicious_sand[dusted=1]": "minecraft:suspicious_sand[brushed_progress=1,hanging=false]", + "minecraft:suspicious_sand[dusted=2]": "minecraft:suspicious_sand[brushed_progress=2,hanging=false]", + "minecraft:suspicious_sand[dusted=3]": "minecraft:suspicious_sand[brushed_progress=3,hanging=false]", + "minecraft:red_sand[]": "minecraft:red_sand[]", + "minecraft:gravel[]": "minecraft:gravel[]", + "minecraft:suspicious_gravel[dusted=0]": "minecraft:suspicious_gravel[brushed_progress=0,hanging=false]", + "minecraft:suspicious_gravel[dusted=1]": "minecraft:suspicious_gravel[brushed_progress=1,hanging=false]", + "minecraft:suspicious_gravel[dusted=2]": "minecraft:suspicious_gravel[brushed_progress=2,hanging=false]", + "minecraft:suspicious_gravel[dusted=3]": "minecraft:suspicious_gravel[brushed_progress=3,hanging=false]", + "minecraft:gold_ore[]": "minecraft:gold_ore[]", + "minecraft:deepslate_gold_ore[]": "minecraft:deepslate_gold_ore[]", + "minecraft:iron_ore[]": "minecraft:iron_ore[]", + "minecraft:deepslate_iron_ore[]": "minecraft:deepslate_iron_ore[]", + "minecraft:coal_ore[]": "minecraft:coal_ore[]", + "minecraft:deepslate_coal_ore[]": "minecraft:deepslate_coal_ore[]", + "minecraft:nether_gold_ore[]": "minecraft:nether_gold_ore[]", + "minecraft:oak_log[axis=x]": "minecraft:oak_log[pillar_axis=x]", + "minecraft:oak_log[axis=y]": "minecraft:oak_log[pillar_axis=y]", + "minecraft:oak_log[axis=z]": "minecraft:oak_log[pillar_axis=z]", + "minecraft:spruce_log[axis=x]": "minecraft:spruce_log[pillar_axis=x]", + "minecraft:spruce_log[axis=y]": "minecraft:spruce_log[pillar_axis=y]", + "minecraft:spruce_log[axis=z]": "minecraft:spruce_log[pillar_axis=z]", + "minecraft:birch_log[axis=x]": "minecraft:birch_log[pillar_axis=x]", + "minecraft:birch_log[axis=y]": "minecraft:birch_log[pillar_axis=y]", + "minecraft:birch_log[axis=z]": "minecraft:birch_log[pillar_axis=z]", + "minecraft:jungle_log[axis=x]": "minecraft:jungle_log[pillar_axis=x]", + "minecraft:jungle_log[axis=y]": "minecraft:jungle_log[pillar_axis=y]", + "minecraft:jungle_log[axis=z]": "minecraft:jungle_log[pillar_axis=z]", + "minecraft:acacia_log[axis=x]": "minecraft:acacia_log[pillar_axis=x]", + "minecraft:acacia_log[axis=y]": "minecraft:acacia_log[pillar_axis=y]", + "minecraft:acacia_log[axis=z]": "minecraft:acacia_log[pillar_axis=z]", + "minecraft:cherry_log[axis=x]": "minecraft:cherry_log[pillar_axis=x]", + "minecraft:cherry_log[axis=y]": "minecraft:cherry_log[pillar_axis=y]", + "minecraft:cherry_log[axis=z]": "minecraft:cherry_log[pillar_axis=z]", + "minecraft:dark_oak_log[axis=x]": "minecraft:dark_oak_log[pillar_axis=x]", + "minecraft:dark_oak_log[axis=y]": "minecraft:dark_oak_log[pillar_axis=y]", + "minecraft:dark_oak_log[axis=z]": "minecraft:dark_oak_log[pillar_axis=z]", + "minecraft:pale_oak_log[axis=x]": "minecraft:pale_oak_log[pillar_axis=x]", + "minecraft:pale_oak_log[axis=y]": "minecraft:pale_oak_log[pillar_axis=y]", + "minecraft:pale_oak_log[axis=z]": "minecraft:pale_oak_log[pillar_axis=z]", + "minecraft:mangrove_log[axis=x]": "minecraft:mangrove_log[pillar_axis=x]", + "minecraft:mangrove_log[axis=y]": "minecraft:mangrove_log[pillar_axis=y]", + "minecraft:mangrove_log[axis=z]": "minecraft:mangrove_log[pillar_axis=z]", + "minecraft:mangrove_roots[waterlogged=true]": "minecraft:mangrove_roots[]", + "minecraft:mangrove_roots[waterlogged=false]": "minecraft:mangrove_roots[]", + "minecraft:muddy_mangrove_roots[axis=x]": "minecraft:muddy_mangrove_roots[pillar_axis=x]", + "minecraft:muddy_mangrove_roots[axis=y]": "minecraft:muddy_mangrove_roots[pillar_axis=y]", + "minecraft:muddy_mangrove_roots[axis=z]": "minecraft:muddy_mangrove_roots[pillar_axis=z]", + "minecraft:bamboo_block[axis=x]": "minecraft:bamboo_block[pillar_axis=x]", + "minecraft:bamboo_block[axis=y]": "minecraft:bamboo_block[pillar_axis=y]", + "minecraft:bamboo_block[axis=z]": "minecraft:bamboo_block[pillar_axis=z]", + "minecraft:stripped_spruce_log[axis=x]": "minecraft:stripped_spruce_log[pillar_axis=x]", + "minecraft:stripped_spruce_log[axis=y]": "minecraft:stripped_spruce_log[pillar_axis=y]", + "minecraft:stripped_spruce_log[axis=z]": "minecraft:stripped_spruce_log[pillar_axis=z]", + "minecraft:stripped_birch_log[axis=x]": "minecraft:stripped_birch_log[pillar_axis=x]", + "minecraft:stripped_birch_log[axis=y]": "minecraft:stripped_birch_log[pillar_axis=y]", + "minecraft:stripped_birch_log[axis=z]": "minecraft:stripped_birch_log[pillar_axis=z]", + "minecraft:stripped_jungle_log[axis=x]": "minecraft:stripped_jungle_log[pillar_axis=x]", + "minecraft:stripped_jungle_log[axis=y]": "minecraft:stripped_jungle_log[pillar_axis=y]", + "minecraft:stripped_jungle_log[axis=z]": "minecraft:stripped_jungle_log[pillar_axis=z]", + "minecraft:stripped_acacia_log[axis=x]": "minecraft:stripped_acacia_log[pillar_axis=x]", + "minecraft:stripped_acacia_log[axis=y]": "minecraft:stripped_acacia_log[pillar_axis=y]", + "minecraft:stripped_acacia_log[axis=z]": "minecraft:stripped_acacia_log[pillar_axis=z]", + "minecraft:stripped_cherry_log[axis=x]": "minecraft:stripped_cherry_log[pillar_axis=x]", + "minecraft:stripped_cherry_log[axis=y]": "minecraft:stripped_cherry_log[pillar_axis=y]", + "minecraft:stripped_cherry_log[axis=z]": "minecraft:stripped_cherry_log[pillar_axis=z]", + "minecraft:stripped_dark_oak_log[axis=x]": "minecraft:stripped_dark_oak_log[pillar_axis=x]", + "minecraft:stripped_dark_oak_log[axis=y]": "minecraft:stripped_dark_oak_log[pillar_axis=y]", + "minecraft:stripped_dark_oak_log[axis=z]": "minecraft:stripped_dark_oak_log[pillar_axis=z]", + "minecraft:stripped_pale_oak_log[axis=x]": "minecraft:stripped_pale_oak_log[pillar_axis=x]", + "minecraft:stripped_pale_oak_log[axis=y]": "minecraft:stripped_pale_oak_log[pillar_axis=y]", + "minecraft:stripped_pale_oak_log[axis=z]": "minecraft:stripped_pale_oak_log[pillar_axis=z]", + "minecraft:stripped_oak_log[axis=x]": "minecraft:stripped_oak_log[pillar_axis=x]", + "minecraft:stripped_oak_log[axis=y]": "minecraft:stripped_oak_log[pillar_axis=y]", + "minecraft:stripped_oak_log[axis=z]": "minecraft:stripped_oak_log[pillar_axis=z]", + "minecraft:stripped_mangrove_log[axis=x]": "minecraft:stripped_mangrove_log[pillar_axis=x]", + "minecraft:stripped_mangrove_log[axis=y]": "minecraft:stripped_mangrove_log[pillar_axis=y]", + "minecraft:stripped_mangrove_log[axis=z]": "minecraft:stripped_mangrove_log[pillar_axis=z]", + "minecraft:stripped_bamboo_block[axis=x]": "minecraft:stripped_bamboo_block[pillar_axis=x]", + "minecraft:stripped_bamboo_block[axis=y]": "minecraft:stripped_bamboo_block[pillar_axis=y]", + "minecraft:stripped_bamboo_block[axis=z]": "minecraft:stripped_bamboo_block[pillar_axis=z]", + "minecraft:oak_wood[axis=x]": "minecraft:oak_wood[pillar_axis=x]", + "minecraft:oak_wood[axis=y]": "minecraft:oak_wood[pillar_axis=y]", + "minecraft:oak_wood[axis=z]": "minecraft:oak_wood[pillar_axis=z]", + "minecraft:spruce_wood[axis=x]": "minecraft:spruce_wood[pillar_axis=x]", + "minecraft:spruce_wood[axis=y]": "minecraft:spruce_wood[pillar_axis=y]", + "minecraft:spruce_wood[axis=z]": "minecraft:spruce_wood[pillar_axis=z]", + "minecraft:birch_wood[axis=x]": "minecraft:birch_wood[pillar_axis=x]", + "minecraft:birch_wood[axis=y]": "minecraft:birch_wood[pillar_axis=y]", + "minecraft:birch_wood[axis=z]": "minecraft:birch_wood[pillar_axis=z]", + "minecraft:jungle_wood[axis=x]": "minecraft:jungle_wood[pillar_axis=x]", + "minecraft:jungle_wood[axis=y]": "minecraft:jungle_wood[pillar_axis=y]", + "minecraft:jungle_wood[axis=z]": "minecraft:jungle_wood[pillar_axis=z]", + "minecraft:acacia_wood[axis=x]": "minecraft:acacia_wood[pillar_axis=x]", + "minecraft:acacia_wood[axis=y]": "minecraft:acacia_wood[pillar_axis=y]", + "minecraft:acacia_wood[axis=z]": "minecraft:acacia_wood[pillar_axis=z]", + "minecraft:cherry_wood[axis=x]": "minecraft:cherry_wood[pillar_axis=x]", + "minecraft:cherry_wood[axis=y]": "minecraft:cherry_wood[pillar_axis=y]", + "minecraft:cherry_wood[axis=z]": "minecraft:cherry_wood[pillar_axis=z]", + "minecraft:dark_oak_wood[axis=x]": "minecraft:dark_oak_wood[pillar_axis=x]", + "minecraft:dark_oak_wood[axis=y]": "minecraft:dark_oak_wood[pillar_axis=y]", + "minecraft:dark_oak_wood[axis=z]": "minecraft:dark_oak_wood[pillar_axis=z]", + "minecraft:mangrove_wood[axis=x]": "minecraft:mangrove_wood[pillar_axis=x]", + "minecraft:mangrove_wood[axis=y]": "minecraft:mangrove_wood[pillar_axis=y]", + "minecraft:mangrove_wood[axis=z]": "minecraft:mangrove_wood[pillar_axis=z]", + "minecraft:stripped_oak_wood[axis=x]": "minecraft:stripped_oak_wood[pillar_axis=x]", + "minecraft:stripped_oak_wood[axis=y]": "minecraft:stripped_oak_wood[pillar_axis=y]", + "minecraft:stripped_oak_wood[axis=z]": "minecraft:stripped_oak_wood[pillar_axis=z]", + "minecraft:stripped_spruce_wood[axis=x]": "minecraft:stripped_spruce_wood[pillar_axis=x]", + "minecraft:stripped_spruce_wood[axis=y]": "minecraft:stripped_spruce_wood[pillar_axis=y]", + "minecraft:stripped_spruce_wood[axis=z]": "minecraft:stripped_spruce_wood[pillar_axis=z]", + "minecraft:stripped_birch_wood[axis=x]": "minecraft:stripped_birch_wood[pillar_axis=x]", + "minecraft:stripped_birch_wood[axis=y]": "minecraft:stripped_birch_wood[pillar_axis=y]", + "minecraft:stripped_birch_wood[axis=z]": "minecraft:stripped_birch_wood[pillar_axis=z]", + "minecraft:stripped_jungle_wood[axis=x]": "minecraft:stripped_jungle_wood[pillar_axis=x]", + "minecraft:stripped_jungle_wood[axis=y]": "minecraft:stripped_jungle_wood[pillar_axis=y]", + "minecraft:stripped_jungle_wood[axis=z]": "minecraft:stripped_jungle_wood[pillar_axis=z]", + "minecraft:stripped_acacia_wood[axis=x]": "minecraft:stripped_acacia_wood[pillar_axis=x]", + "minecraft:stripped_acacia_wood[axis=y]": "minecraft:stripped_acacia_wood[pillar_axis=y]", + "minecraft:stripped_acacia_wood[axis=z]": "minecraft:stripped_acacia_wood[pillar_axis=z]", + "minecraft:stripped_cherry_wood[axis=x]": "minecraft:stripped_cherry_wood[pillar_axis=x]", + "minecraft:stripped_cherry_wood[axis=y]": "minecraft:stripped_cherry_wood[pillar_axis=y]", + "minecraft:stripped_cherry_wood[axis=z]": "minecraft:stripped_cherry_wood[pillar_axis=z]", + "minecraft:stripped_dark_oak_wood[axis=x]": "minecraft:stripped_dark_oak_wood[pillar_axis=x]", + "minecraft:stripped_dark_oak_wood[axis=y]": "minecraft:stripped_dark_oak_wood[pillar_axis=y]", + "minecraft:stripped_dark_oak_wood[axis=z]": "minecraft:stripped_dark_oak_wood[pillar_axis=z]", + "minecraft:stripped_pale_oak_wood[axis=x]": "minecraft:stripped_pale_oak_wood[pillar_axis=x]", + "minecraft:stripped_pale_oak_wood[axis=y]": "minecraft:stripped_pale_oak_wood[pillar_axis=y]", + "minecraft:stripped_pale_oak_wood[axis=z]": "minecraft:stripped_pale_oak_wood[pillar_axis=z]", + "minecraft:stripped_mangrove_wood[axis=x]": "minecraft:stripped_mangrove_wood[pillar_axis=x]", + "minecraft:stripped_mangrove_wood[axis=y]": "minecraft:stripped_mangrove_wood[pillar_axis=y]", + "minecraft:stripped_mangrove_wood[axis=z]": "minecraft:stripped_mangrove_wood[pillar_axis=z]", + "minecraft:oak_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:pale_oak_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:pale_oak_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:pale_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:sponge[]": "minecraft:sponge[]", + "minecraft:wet_sponge[]": "minecraft:wet_sponge[]", + "minecraft:glass[]": "minecraft:glass[]", + "minecraft:lapis_ore[]": "minecraft:lapis_ore[]", + "minecraft:deepslate_lapis_ore[]": "minecraft:deepslate_lapis_ore[]", + "minecraft:lapis_block[]": "minecraft:lapis_block[]", + "minecraft:dispenser[facing=north,triggered=true]": "minecraft:dispenser[facing_direction=2,triggered_bit=true]", + "minecraft:dispenser[facing=north,triggered=false]": "minecraft:dispenser[facing_direction=2,triggered_bit=false]", + "minecraft:dispenser[facing=east,triggered=true]": "minecraft:dispenser[facing_direction=5,triggered_bit=true]", + "minecraft:dispenser[facing=east,triggered=false]": "minecraft:dispenser[facing_direction=5,triggered_bit=false]", + "minecraft:dispenser[facing=south,triggered=true]": "minecraft:dispenser[facing_direction=3,triggered_bit=true]", + "minecraft:dispenser[facing=south,triggered=false]": "minecraft:dispenser[facing_direction=3,triggered_bit=false]", + "minecraft:dispenser[facing=west,triggered=true]": "minecraft:dispenser[facing_direction=4,triggered_bit=true]", + "minecraft:dispenser[facing=west,triggered=false]": "minecraft:dispenser[facing_direction=4,triggered_bit=false]", + "minecraft:dispenser[facing=up,triggered=true]": "minecraft:dispenser[facing_direction=1,triggered_bit=true]", + "minecraft:dispenser[facing=up,triggered=false]": "minecraft:dispenser[facing_direction=1,triggered_bit=false]", + "minecraft:dispenser[facing=down,triggered=true]": "minecraft:dispenser[facing_direction=0,triggered_bit=true]", + "minecraft:dispenser[facing=down,triggered=false]": "minecraft:dispenser[facing_direction=0,triggered_bit=false]", + "minecraft:sandstone[]": "minecraft:sandstone[]", + "minecraft:chiseled_sandstone[]": "minecraft:chiseled_sandstone[]", + "minecraft:cut_sandstone[]": "minecraft:cut_sandstone[]", + "minecraft:note_block[instrument=harp,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:white_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:white_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:white_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:white_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:white_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:white_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:white_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:white_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:white_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:white_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:white_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:white_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:white_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:white_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:white_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:white_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:orange_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:orange_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:orange_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:orange_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:orange_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:orange_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:orange_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:orange_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:orange_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:orange_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:orange_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:orange_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:orange_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:orange_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:orange_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:orange_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:magenta_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:magenta_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:magenta_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:magenta_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:magenta_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:magenta_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:magenta_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:magenta_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:magenta_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:magenta_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:magenta_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:magenta_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:magenta_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:magenta_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:magenta_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:magenta_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_blue_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_blue_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_blue_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_blue_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_blue_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_blue_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_blue_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_blue_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_blue_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_blue_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_blue_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_blue_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_blue_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_blue_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_blue_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_blue_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:yellow_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:yellow_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:yellow_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:yellow_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:yellow_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:yellow_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:yellow_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:yellow_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:yellow_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:yellow_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:yellow_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:yellow_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:yellow_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:yellow_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:yellow_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:yellow_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:lime_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:lime_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:lime_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:lime_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:lime_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:lime_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:lime_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:lime_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:lime_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:lime_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:lime_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:lime_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:lime_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:lime_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:lime_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:lime_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:pink_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:pink_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:pink_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:pink_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:pink_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:pink_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:pink_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:pink_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:pink_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:pink_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:pink_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:pink_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:pink_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:pink_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:pink_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:pink_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:gray_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:gray_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:gray_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:gray_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:gray_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:gray_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:gray_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:gray_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:gray_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:gray_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:gray_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:gray_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:gray_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:gray_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:gray_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:gray_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_gray_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_gray_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_gray_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_gray_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_gray_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_gray_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_gray_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_gray_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_gray_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_gray_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_gray_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_gray_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_gray_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_gray_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_gray_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_gray_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:cyan_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:cyan_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:cyan_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:cyan_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:cyan_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:cyan_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:cyan_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:cyan_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:cyan_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:cyan_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:cyan_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:cyan_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:cyan_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:cyan_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:cyan_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:cyan_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:purple_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:purple_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:purple_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:purple_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:purple_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:purple_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:purple_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:purple_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:purple_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:purple_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:purple_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:purple_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:purple_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:purple_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:purple_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:purple_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:blue_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:blue_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:blue_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:blue_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:blue_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:blue_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:blue_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:blue_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:blue_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:blue_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:blue_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:blue_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:blue_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:blue_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:blue_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:blue_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:brown_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:brown_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:brown_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:brown_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:brown_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:brown_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:brown_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:brown_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:brown_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:brown_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:brown_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:brown_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:brown_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:brown_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:brown_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:brown_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:green_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:green_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:green_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:green_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:green_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:green_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:green_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:green_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:green_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:green_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:green_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:green_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:green_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:green_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:green_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:green_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:red_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:red_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:red_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:red_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:red_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:red_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:red_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:red_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:red_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:red_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:red_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:red_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:red_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:red_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:red_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:red_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:black_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:black_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:black_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:black_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:black_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:black_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:black_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:black_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:black_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:black_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:black_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:black_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:black_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:black_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:black_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:black_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:powered_rail[powered=true,shape=north_south,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:powered_rail[powered=true,shape=north_south,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:powered_rail[powered=true,shape=east_west,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:powered_rail[powered=true,shape=east_west,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:powered_rail[powered=false,shape=north_south,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:powered_rail[powered=false,shape=north_south,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:powered_rail[powered=false,shape=east_west,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:powered_rail[powered=false,shape=east_west,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:detector_rail[powered=true,shape=north_south,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:detector_rail[powered=true,shape=north_south,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:detector_rail[powered=true,shape=east_west,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:detector_rail[powered=true,shape=east_west,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:detector_rail[powered=false,shape=north_south,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:detector_rail[powered=false,shape=north_south,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:detector_rail[powered=false,shape=east_west,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:detector_rail[powered=false,shape=east_west,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:sticky_piston[extended=true,facing=north]": "minecraft:sticky_piston[facing_direction=3]", + "minecraft:sticky_piston[extended=true,facing=east]": "minecraft:sticky_piston[facing_direction=4]", + "minecraft:sticky_piston[extended=true,facing=south]": "minecraft:sticky_piston[facing_direction=2]", + "minecraft:sticky_piston[extended=true,facing=west]": "minecraft:sticky_piston[facing_direction=5]", + "minecraft:sticky_piston[extended=true,facing=up]": "minecraft:sticky_piston[facing_direction=1]", + "minecraft:sticky_piston[extended=true,facing=down]": "minecraft:sticky_piston[facing_direction=0]", + "minecraft:sticky_piston[extended=false,facing=north]": "minecraft:sticky_piston[facing_direction=3]", + "minecraft:sticky_piston[extended=false,facing=east]": "minecraft:sticky_piston[facing_direction=4]", + "minecraft:sticky_piston[extended=false,facing=south]": "minecraft:sticky_piston[facing_direction=2]", + "minecraft:sticky_piston[extended=false,facing=west]": "minecraft:sticky_piston[facing_direction=5]", + "minecraft:sticky_piston[extended=false,facing=up]": "minecraft:sticky_piston[facing_direction=1]", + "minecraft:sticky_piston[extended=false,facing=down]": "minecraft:sticky_piston[facing_direction=0]", + "minecraft:cobweb[]": "minecraft:web[]", + "minecraft:short_grass[]": "minecraft:short_grass[]", + "minecraft:fern[]": "minecraft:fern[]", + "minecraft:dead_bush[]": "minecraft:deadbush[]", + "minecraft:bush[]": "minecraft:bush[]", + "minecraft:short_dry_grass[]": "minecraft:short_dry_grass[]", + "minecraft:tall_dry_grass[]": "minecraft:tall_dry_grass[]", + "minecraft:seagrass[]": "minecraft:seagrass[sea_grass_type=default]", + "minecraft:tall_seagrass[half=upper]": "minecraft:seagrass[sea_grass_type=double_top]", + "minecraft:tall_seagrass[half=lower]": "minecraft:seagrass[sea_grass_type=double_bot]", + "minecraft:piston[extended=true,facing=north]": "minecraft:piston[facing_direction=3]", + "minecraft:piston[extended=true,facing=east]": "minecraft:piston[facing_direction=4]", + "minecraft:piston[extended=true,facing=south]": "minecraft:piston[facing_direction=2]", + "minecraft:piston[extended=true,facing=west]": "minecraft:piston[facing_direction=5]", + "minecraft:piston[extended=true,facing=up]": "minecraft:piston[facing_direction=1]", + "minecraft:piston[extended=true,facing=down]": "minecraft:piston[facing_direction=0]", + "minecraft:piston[extended=false,facing=north]": "minecraft:piston[facing_direction=3]", + "minecraft:piston[extended=false,facing=east]": "minecraft:piston[facing_direction=4]", + "minecraft:piston[extended=false,facing=south]": "minecraft:piston[facing_direction=2]", + "minecraft:piston[extended=false,facing=west]": "minecraft:piston[facing_direction=5]", + "minecraft:piston[extended=false,facing=up]": "minecraft:piston[facing_direction=1]", + "minecraft:piston[extended=false,facing=down]": "minecraft:piston[facing_direction=0]", + "minecraft:piston_head[facing=north,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=3]", + "minecraft:piston_head[facing=north,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=3]", + "minecraft:piston_head[facing=north,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=3]", + "minecraft:piston_head[facing=north,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=3]", + "minecraft:piston_head[facing=east,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=4]", + "minecraft:piston_head[facing=east,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=4]", + "minecraft:piston_head[facing=east,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=4]", + "minecraft:piston_head[facing=east,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=4]", + "minecraft:piston_head[facing=south,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=2]", + "minecraft:piston_head[facing=south,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=2]", + "minecraft:piston_head[facing=south,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=2]", + "minecraft:piston_head[facing=south,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=2]", + "minecraft:piston_head[facing=west,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=5]", + "minecraft:piston_head[facing=west,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=5]", + "minecraft:piston_head[facing=west,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=5]", + "minecraft:piston_head[facing=west,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=5]", + "minecraft:piston_head[facing=up,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=1]", + "minecraft:piston_head[facing=up,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=1]", + "minecraft:piston_head[facing=up,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=1]", + "minecraft:piston_head[facing=up,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=1]", + "minecraft:piston_head[facing=down,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=0]", + "minecraft:piston_head[facing=down,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=0]", + "minecraft:piston_head[facing=down,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=0]", + "minecraft:piston_head[facing=down,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=0]", + "minecraft:white_wool[]": "minecraft:white_wool[]", + "minecraft:orange_wool[]": "minecraft:orange_wool[]", + "minecraft:magenta_wool[]": "minecraft:magenta_wool[]", + "minecraft:light_blue_wool[]": "minecraft:light_blue_wool[]", + "minecraft:yellow_wool[]": "minecraft:yellow_wool[]", + "minecraft:lime_wool[]": "minecraft:lime_wool[]", + "minecraft:pink_wool[]": "minecraft:pink_wool[]", + "minecraft:gray_wool[]": "minecraft:gray_wool[]", + "minecraft:light_gray_wool[]": "minecraft:light_gray_wool[]", + "minecraft:cyan_wool[]": "minecraft:cyan_wool[]", + "minecraft:purple_wool[]": "minecraft:purple_wool[]", + "minecraft:blue_wool[]": "minecraft:blue_wool[]", + "minecraft:brown_wool[]": "minecraft:brown_wool[]", + "minecraft:green_wool[]": "minecraft:green_wool[]", + "minecraft:red_wool[]": "minecraft:red_wool[]", + "minecraft:black_wool[]": "minecraft:black_wool[]", + "minecraft:moving_piston[facing=north,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=north,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=east,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=east,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=south,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=south,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=west,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=west,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=up,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=up,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=down,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=down,type=sticky]": "minecraft:moving_block[]", + "minecraft:dandelion[]": "minecraft:dandelion[]", + "minecraft:torchflower[]": "minecraft:torchflower[]", + "minecraft:poppy[]": "minecraft:poppy[]", + "minecraft:blue_orchid[]": "minecraft:blue_orchid[]", + "minecraft:allium[]": "minecraft:allium[]", + "minecraft:azure_bluet[]": "minecraft:azure_bluet[]", + "minecraft:red_tulip[]": "minecraft:red_tulip[]", + "minecraft:orange_tulip[]": "minecraft:orange_tulip[]", + "minecraft:white_tulip[]": "minecraft:white_tulip[]", + "minecraft:pink_tulip[]": "minecraft:pink_tulip[]", + "minecraft:oxeye_daisy[]": "minecraft:oxeye_daisy[]", + "minecraft:cornflower[]": "minecraft:cornflower[]", + "minecraft:wither_rose[]": "minecraft:wither_rose[]", + "minecraft:lily_of_the_valley[]": "minecraft:lily_of_the_valley[]", + "minecraft:brown_mushroom[]": "minecraft:brown_mushroom[]", + "minecraft:red_mushroom[]": "minecraft:red_mushroom[]", + "minecraft:gold_block[]": "minecraft:gold_block[]", + "minecraft:iron_block[]": "minecraft:iron_block[]", + "minecraft:bricks[]": "minecraft:brick_block[]", + "minecraft:tnt[unstable=true]": "minecraft:underwater_tnt[explode_bit=false]", + "minecraft:tnt[unstable=false]": "minecraft:tnt[explode_bit=false]", + "minecraft:bookshelf[]": "minecraft:bookshelf[]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=63,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=31,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=47,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=15,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=55,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=23,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=39,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=7,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=59,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=27,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=43,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=11,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=51,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=19,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=35,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=3,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=61,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=29,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=45,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=13,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=53,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=21,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=37,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=5,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=57,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=25,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=41,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=9,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=49,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=17,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=33,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=1,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=62,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=30,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=46,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=14,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=54,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=22,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=38,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=6,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=58,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=26,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=42,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=10,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=50,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=18,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=34,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=2,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=60,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=28,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=44,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=12,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=52,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=20,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=36,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=4,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=56,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=24,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=40,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=8,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=48,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=16,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=32,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=0,direction=2]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=63,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=31,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=47,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=15,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=55,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=23,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=39,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=7,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=59,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=27,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=43,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=11,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=51,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=19,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=35,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=3,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=61,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=29,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=45,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=13,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=53,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=21,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=37,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=5,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=57,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=25,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=41,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=9,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=49,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=17,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=33,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=1,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=62,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=30,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=46,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=14,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=54,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=22,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=38,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=6,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=58,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=26,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=42,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=10,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=50,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=18,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=34,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=2,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=60,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=28,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=44,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=12,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=52,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=20,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=36,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=4,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=56,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=24,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=40,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=8,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=48,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=16,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=32,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=0,direction=0]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=63,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=31,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=47,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=15,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=55,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=23,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=39,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=7,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=59,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=27,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=43,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=11,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=51,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=19,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=35,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=3,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=61,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=29,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=45,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=13,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=53,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=21,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=37,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=5,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=57,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=25,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=41,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=9,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=49,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=17,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=33,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=1,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=62,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=30,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=46,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=14,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=54,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=22,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=38,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=6,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=58,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=26,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=42,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=10,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=50,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=18,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=34,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=2,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=60,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=28,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=44,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=12,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=52,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=20,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=36,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=4,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=56,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=24,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=40,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=8,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=48,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=16,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=32,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=0,direction=1]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=63,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=31,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=47,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=15,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=55,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=23,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=39,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=7,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=59,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=27,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=43,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=11,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=51,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=19,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=35,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=3,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=61,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=29,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=45,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=13,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=53,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=21,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=37,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=5,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=57,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=25,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=41,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=9,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=49,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=17,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=33,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=1,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=62,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=30,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=46,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=14,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=54,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=22,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=38,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=6,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=58,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=26,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=42,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=10,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=50,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=18,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=34,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=2,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=60,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=28,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=44,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=12,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=52,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=20,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=36,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=4,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=56,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=24,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=40,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=8,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=48,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=16,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=32,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=0,direction=3]", + "minecraft:mossy_cobblestone[]": "minecraft:mossy_cobblestone[]", + "minecraft:obsidian[]": "minecraft:obsidian[]", + "minecraft:torch[]": "minecraft:torch[torch_facing_direction=top]", + "minecraft:wall_torch[facing=north]": "minecraft:torch[torch_facing_direction=south]", + "minecraft:wall_torch[facing=south]": "minecraft:torch[torch_facing_direction=north]", + "minecraft:wall_torch[facing=west]": "minecraft:torch[torch_facing_direction=east]", + "minecraft:wall_torch[facing=east]": "minecraft:torch[torch_facing_direction=west]", + "minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:soul_fire[]": "minecraft:soul_fire[age=0]", + "minecraft:spawner[]": "minecraft:mob_spawner[]", + "minecraft:creaking_heart[axis=x,creaking_heart_state=uprooted,natural=true]": "minecraft:creaking_heart[creaking_heart_state=uprooted,natural=true,pillar_axis=x]", + "minecraft:creaking_heart[axis=x,creaking_heart_state=uprooted,natural=false]": "minecraft:creaking_heart[creaking_heart_state=uprooted,natural=false,pillar_axis=x]", + "minecraft:creaking_heart[axis=x,creaking_heart_state=dormant,natural=true]": "minecraft:creaking_heart[creaking_heart_state=dormant,natural=true,pillar_axis=x]", + "minecraft:creaking_heart[axis=x,creaking_heart_state=dormant,natural=false]": "minecraft:creaking_heart[creaking_heart_state=dormant,natural=false,pillar_axis=x]", + "minecraft:creaking_heart[axis=x,creaking_heart_state=awake,natural=true]": "minecraft:creaking_heart[creaking_heart_state=awake,natural=true,pillar_axis=x]", + "minecraft:creaking_heart[axis=x,creaking_heart_state=awake,natural=false]": "minecraft:creaking_heart[creaking_heart_state=awake,natural=false,pillar_axis=x]", + "minecraft:creaking_heart[axis=y,creaking_heart_state=uprooted,natural=true]": "minecraft:creaking_heart[creaking_heart_state=uprooted,natural=true,pillar_axis=y]", + "minecraft:creaking_heart[axis=y,creaking_heart_state=uprooted,natural=false]": "minecraft:creaking_heart[creaking_heart_state=uprooted,natural=false,pillar_axis=y]", + "minecraft:creaking_heart[axis=y,creaking_heart_state=dormant,natural=true]": "minecraft:creaking_heart[creaking_heart_state=dormant,natural=true,pillar_axis=y]", + "minecraft:creaking_heart[axis=y,creaking_heart_state=dormant,natural=false]": "minecraft:creaking_heart[creaking_heart_state=dormant,natural=false,pillar_axis=y]", + "minecraft:creaking_heart[axis=y,creaking_heart_state=awake,natural=true]": "minecraft:creaking_heart[creaking_heart_state=awake,natural=true,pillar_axis=y]", + "minecraft:creaking_heart[axis=y,creaking_heart_state=awake,natural=false]": "minecraft:creaking_heart[creaking_heart_state=awake,natural=false,pillar_axis=y]", + "minecraft:creaking_heart[axis=z,creaking_heart_state=uprooted,natural=true]": "minecraft:creaking_heart[creaking_heart_state=uprooted,natural=true,pillar_axis=z]", + "minecraft:creaking_heart[axis=z,creaking_heart_state=uprooted,natural=false]": "minecraft:creaking_heart[creaking_heart_state=uprooted,natural=false,pillar_axis=z]", + "minecraft:creaking_heart[axis=z,creaking_heart_state=dormant,natural=true]": "minecraft:creaking_heart[creaking_heart_state=dormant,natural=true,pillar_axis=z]", + "minecraft:creaking_heart[axis=z,creaking_heart_state=dormant,natural=false]": "minecraft:creaking_heart[creaking_heart_state=dormant,natural=false,pillar_axis=z]", + "minecraft:creaking_heart[axis=z,creaking_heart_state=awake,natural=true]": "minecraft:creaking_heart[creaking_heart_state=awake,natural=true,pillar_axis=z]", + "minecraft:creaking_heart[axis=z,creaking_heart_state=awake,natural=false]": "minecraft:creaking_heart[creaking_heart_state=awake,natural=false,pillar_axis=z]", + "minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:chest[facing=north,type=single,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=single,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=left,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=left,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=right,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=right,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=south,type=single,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=single,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=left,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=left,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=right,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=right,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=west,type=single,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=single,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=left,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=left,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=right,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=right,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=east,type=single,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=single,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=left,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=left,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=right,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=right,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:diamond_ore[]": "minecraft:diamond_ore[]", + "minecraft:deepslate_diamond_ore[]": "minecraft:deepslate_diamond_ore[]", + "minecraft:diamond_block[]": "minecraft:diamond_block[]", + "minecraft:crafting_table[]": "minecraft:crafting_table[]", + "minecraft:wheat[age=0]": "minecraft:wheat[growth=0]", + "minecraft:wheat[age=1]": "minecraft:wheat[growth=1]", + "minecraft:wheat[age=2]": "minecraft:wheat[growth=2]", + "minecraft:wheat[age=3]": "minecraft:wheat[growth=3]", + "minecraft:wheat[age=4]": "minecraft:wheat[growth=4]", + "minecraft:wheat[age=5]": "minecraft:wheat[growth=5]", + "minecraft:wheat[age=6]": "minecraft:wheat[growth=6]", + "minecraft:wheat[age=7]": "minecraft:wheat[growth=7]", + "minecraft:farmland[moisture=0]": "minecraft:farmland[moisturized_amount=0]", + "minecraft:farmland[moisture=1]": "minecraft:farmland[moisturized_amount=1]", + "minecraft:farmland[moisture=2]": "minecraft:farmland[moisturized_amount=2]", + "minecraft:farmland[moisture=3]": "minecraft:farmland[moisturized_amount=3]", + "minecraft:farmland[moisture=4]": "minecraft:farmland[moisturized_amount=4]", + "minecraft:farmland[moisture=5]": "minecraft:farmland[moisturized_amount=5]", + "minecraft:farmland[moisture=6]": "minecraft:farmland[moisturized_amount=6]", + "minecraft:farmland[moisture=7]": "minecraft:farmland[moisturized_amount=7]", + "minecraft:furnace[facing=north,lit=true]": "minecraft:lit_furnace[minecraft:cardinal_direction=north]", + "minecraft:furnace[facing=north,lit=false]": "minecraft:furnace[minecraft:cardinal_direction=north]", + "minecraft:furnace[facing=south,lit=true]": "minecraft:lit_furnace[minecraft:cardinal_direction=south]", + "minecraft:furnace[facing=south,lit=false]": "minecraft:furnace[minecraft:cardinal_direction=south]", + "minecraft:furnace[facing=west,lit=true]": "minecraft:lit_furnace[minecraft:cardinal_direction=west]", + "minecraft:furnace[facing=west,lit=false]": "minecraft:furnace[minecraft:cardinal_direction=west]", + "minecraft:furnace[facing=east,lit=true]": "minecraft:lit_furnace[minecraft:cardinal_direction=east]", + "minecraft:furnace[facing=east,lit=false]": "minecraft:furnace[minecraft:cardinal_direction=east]", + "minecraft:oak_sign[rotation=0,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=0]", + "minecraft:oak_sign[rotation=0,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=0]", + "minecraft:oak_sign[rotation=1,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=1]", + "minecraft:oak_sign[rotation=1,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=1]", + "minecraft:oak_sign[rotation=2,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=2]", + "minecraft:oak_sign[rotation=2,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=2]", + "minecraft:oak_sign[rotation=3,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=3]", + "minecraft:oak_sign[rotation=3,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=3]", + "minecraft:oak_sign[rotation=4,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=4]", + "minecraft:oak_sign[rotation=4,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=4]", + "minecraft:oak_sign[rotation=5,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=5]", + "minecraft:oak_sign[rotation=5,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=5]", + "minecraft:oak_sign[rotation=6,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=6]", + "minecraft:oak_sign[rotation=6,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=6]", + "minecraft:oak_sign[rotation=7,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=7]", + "minecraft:oak_sign[rotation=7,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=7]", + "minecraft:oak_sign[rotation=8,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=8]", + "minecraft:oak_sign[rotation=8,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=8]", + "minecraft:oak_sign[rotation=9,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=9]", + "minecraft:oak_sign[rotation=9,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=9]", + "minecraft:oak_sign[rotation=10,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=10]", + "minecraft:oak_sign[rotation=10,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=10]", + "minecraft:oak_sign[rotation=11,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=11]", + "minecraft:oak_sign[rotation=11,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=11]", + "minecraft:oak_sign[rotation=12,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=12]", + "minecraft:oak_sign[rotation=12,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=12]", + "minecraft:oak_sign[rotation=13,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=13]", + "minecraft:oak_sign[rotation=13,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=13]", + "minecraft:oak_sign[rotation=14,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=14]", + "minecraft:oak_sign[rotation=14,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=14]", + "minecraft:oak_sign[rotation=15,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=15]", + "minecraft:oak_sign[rotation=15,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=15]", + "minecraft:spruce_sign[rotation=0,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=0]", + "minecraft:spruce_sign[rotation=0,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=0]", + "minecraft:spruce_sign[rotation=1,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=1]", + "minecraft:spruce_sign[rotation=1,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=1]", + "minecraft:spruce_sign[rotation=2,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=2]", + "minecraft:spruce_sign[rotation=2,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=2]", + "minecraft:spruce_sign[rotation=3,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=3]", + "minecraft:spruce_sign[rotation=3,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=3]", + "minecraft:spruce_sign[rotation=4,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=4]", + "minecraft:spruce_sign[rotation=4,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=4]", + "minecraft:spruce_sign[rotation=5,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=5]", + "minecraft:spruce_sign[rotation=5,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=5]", + "minecraft:spruce_sign[rotation=6,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=6]", + "minecraft:spruce_sign[rotation=6,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=6]", + "minecraft:spruce_sign[rotation=7,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=7]", + "minecraft:spruce_sign[rotation=7,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=7]", + "minecraft:spruce_sign[rotation=8,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=8]", + "minecraft:spruce_sign[rotation=8,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=8]", + "minecraft:spruce_sign[rotation=9,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=9]", + "minecraft:spruce_sign[rotation=9,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=9]", + "minecraft:spruce_sign[rotation=10,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=10]", + "minecraft:spruce_sign[rotation=10,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=10]", + "minecraft:spruce_sign[rotation=11,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=11]", + "minecraft:spruce_sign[rotation=11,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=11]", + "minecraft:spruce_sign[rotation=12,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=12]", + "minecraft:spruce_sign[rotation=12,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=12]", + "minecraft:spruce_sign[rotation=13,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=13]", + "minecraft:spruce_sign[rotation=13,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=13]", + "minecraft:spruce_sign[rotation=14,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=14]", + "minecraft:spruce_sign[rotation=14,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=14]", + "minecraft:spruce_sign[rotation=15,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=15]", + "minecraft:spruce_sign[rotation=15,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=15]", + "minecraft:birch_sign[rotation=0,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=0]", + "minecraft:birch_sign[rotation=0,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=0]", + "minecraft:birch_sign[rotation=1,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=1]", + "minecraft:birch_sign[rotation=1,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=1]", + "minecraft:birch_sign[rotation=2,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=2]", + "minecraft:birch_sign[rotation=2,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=2]", + "minecraft:birch_sign[rotation=3,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=3]", + "minecraft:birch_sign[rotation=3,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=3]", + "minecraft:birch_sign[rotation=4,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=4]", + "minecraft:birch_sign[rotation=4,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=4]", + "minecraft:birch_sign[rotation=5,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=5]", + "minecraft:birch_sign[rotation=5,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=5]", + "minecraft:birch_sign[rotation=6,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=6]", + "minecraft:birch_sign[rotation=6,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=6]", + "minecraft:birch_sign[rotation=7,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=7]", + "minecraft:birch_sign[rotation=7,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=7]", + "minecraft:birch_sign[rotation=8,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=8]", + "minecraft:birch_sign[rotation=8,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=8]", + "minecraft:birch_sign[rotation=9,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=9]", + "minecraft:birch_sign[rotation=9,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=9]", + "minecraft:birch_sign[rotation=10,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=10]", + "minecraft:birch_sign[rotation=10,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=10]", + "minecraft:birch_sign[rotation=11,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=11]", + "minecraft:birch_sign[rotation=11,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=11]", + "minecraft:birch_sign[rotation=12,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=12]", + "minecraft:birch_sign[rotation=12,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=12]", + "minecraft:birch_sign[rotation=13,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=13]", + "minecraft:birch_sign[rotation=13,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=13]", + "minecraft:birch_sign[rotation=14,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=14]", + "minecraft:birch_sign[rotation=14,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=14]", + "minecraft:birch_sign[rotation=15,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=15]", + "minecraft:birch_sign[rotation=15,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=15]", + "minecraft:acacia_sign[rotation=0,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=0]", + "minecraft:acacia_sign[rotation=0,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=0]", + "minecraft:acacia_sign[rotation=1,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=1]", + "minecraft:acacia_sign[rotation=1,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=1]", + "minecraft:acacia_sign[rotation=2,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=2]", + "minecraft:acacia_sign[rotation=2,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=2]", + "minecraft:acacia_sign[rotation=3,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=3]", + "minecraft:acacia_sign[rotation=3,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=3]", + "minecraft:acacia_sign[rotation=4,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=4]", + "minecraft:acacia_sign[rotation=4,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=4]", + "minecraft:acacia_sign[rotation=5,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=5]", + "minecraft:acacia_sign[rotation=5,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=5]", + "minecraft:acacia_sign[rotation=6,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=6]", + "minecraft:acacia_sign[rotation=6,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=6]", + "minecraft:acacia_sign[rotation=7,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=7]", + "minecraft:acacia_sign[rotation=7,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=7]", + "minecraft:acacia_sign[rotation=8,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=8]", + "minecraft:acacia_sign[rotation=8,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=8]", + "minecraft:acacia_sign[rotation=9,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=9]", + "minecraft:acacia_sign[rotation=9,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=9]", + "minecraft:acacia_sign[rotation=10,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=10]", + "minecraft:acacia_sign[rotation=10,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=10]", + "minecraft:acacia_sign[rotation=11,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=11]", + "minecraft:acacia_sign[rotation=11,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=11]", + "minecraft:acacia_sign[rotation=12,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=12]", + "minecraft:acacia_sign[rotation=12,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=12]", + "minecraft:acacia_sign[rotation=13,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=13]", + "minecraft:acacia_sign[rotation=13,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=13]", + "minecraft:acacia_sign[rotation=14,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=14]", + "minecraft:acacia_sign[rotation=14,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=14]", + "minecraft:acacia_sign[rotation=15,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=15]", + "minecraft:acacia_sign[rotation=15,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=15]", + "minecraft:cherry_sign[rotation=0,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=0]", + "minecraft:cherry_sign[rotation=0,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=0]", + "minecraft:cherry_sign[rotation=1,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=1]", + "minecraft:cherry_sign[rotation=1,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=1]", + "minecraft:cherry_sign[rotation=2,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=2]", + "minecraft:cherry_sign[rotation=2,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=2]", + "minecraft:cherry_sign[rotation=3,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=3]", + "minecraft:cherry_sign[rotation=3,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=3]", + "minecraft:cherry_sign[rotation=4,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=4]", + "minecraft:cherry_sign[rotation=4,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=4]", + "minecraft:cherry_sign[rotation=5,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=5]", + "minecraft:cherry_sign[rotation=5,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=5]", + "minecraft:cherry_sign[rotation=6,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=6]", + "minecraft:cherry_sign[rotation=6,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=6]", + "minecraft:cherry_sign[rotation=7,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=7]", + "minecraft:cherry_sign[rotation=7,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=7]", + "minecraft:cherry_sign[rotation=8,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=8]", + "minecraft:cherry_sign[rotation=8,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=8]", + "minecraft:cherry_sign[rotation=9,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=9]", + "minecraft:cherry_sign[rotation=9,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=9]", + "minecraft:cherry_sign[rotation=10,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=10]", + "minecraft:cherry_sign[rotation=10,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=10]", + "minecraft:cherry_sign[rotation=11,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=11]", + "minecraft:cherry_sign[rotation=11,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=11]", + "minecraft:cherry_sign[rotation=12,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=12]", + "minecraft:cherry_sign[rotation=12,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=12]", + "minecraft:cherry_sign[rotation=13,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=13]", + "minecraft:cherry_sign[rotation=13,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=13]", + "minecraft:cherry_sign[rotation=14,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=14]", + "minecraft:cherry_sign[rotation=14,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=14]", + "minecraft:cherry_sign[rotation=15,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=15]", + "minecraft:cherry_sign[rotation=15,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=15]", + "minecraft:jungle_sign[rotation=0,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=0]", + "minecraft:jungle_sign[rotation=0,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=0]", + "minecraft:jungle_sign[rotation=1,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=1]", + "minecraft:jungle_sign[rotation=1,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=1]", + "minecraft:jungle_sign[rotation=2,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=2]", + "minecraft:jungle_sign[rotation=2,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=2]", + "minecraft:jungle_sign[rotation=3,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=3]", + "minecraft:jungle_sign[rotation=3,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=3]", + "minecraft:jungle_sign[rotation=4,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=4]", + "minecraft:jungle_sign[rotation=4,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=4]", + "minecraft:jungle_sign[rotation=5,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=5]", + "minecraft:jungle_sign[rotation=5,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=5]", + "minecraft:jungle_sign[rotation=6,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=6]", + "minecraft:jungle_sign[rotation=6,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=6]", + "minecraft:jungle_sign[rotation=7,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=7]", + "minecraft:jungle_sign[rotation=7,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=7]", + "minecraft:jungle_sign[rotation=8,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=8]", + "minecraft:jungle_sign[rotation=8,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=8]", + "minecraft:jungle_sign[rotation=9,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=9]", + "minecraft:jungle_sign[rotation=9,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=9]", + "minecraft:jungle_sign[rotation=10,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=10]", + "minecraft:jungle_sign[rotation=10,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=10]", + "minecraft:jungle_sign[rotation=11,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=11]", + "minecraft:jungle_sign[rotation=11,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=11]", + "minecraft:jungle_sign[rotation=12,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=12]", + "minecraft:jungle_sign[rotation=12,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=12]", + "minecraft:jungle_sign[rotation=13,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=13]", + "minecraft:jungle_sign[rotation=13,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=13]", + "minecraft:jungle_sign[rotation=14,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=14]", + "minecraft:jungle_sign[rotation=14,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=14]", + "minecraft:jungle_sign[rotation=15,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=15]", + "minecraft:jungle_sign[rotation=15,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=15]", + "minecraft:dark_oak_sign[rotation=0,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=0]", + "minecraft:dark_oak_sign[rotation=0,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=0]", + "minecraft:dark_oak_sign[rotation=1,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=1]", + "minecraft:dark_oak_sign[rotation=1,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=1]", + "minecraft:dark_oak_sign[rotation=2,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=2]", + "minecraft:dark_oak_sign[rotation=2,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=2]", + "minecraft:dark_oak_sign[rotation=3,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=3]", + "minecraft:dark_oak_sign[rotation=3,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=3]", + "minecraft:dark_oak_sign[rotation=4,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=4]", + "minecraft:dark_oak_sign[rotation=4,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=4]", + "minecraft:dark_oak_sign[rotation=5,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=5]", + "minecraft:dark_oak_sign[rotation=5,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=5]", + "minecraft:dark_oak_sign[rotation=6,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=6]", + "minecraft:dark_oak_sign[rotation=6,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=6]", + "minecraft:dark_oak_sign[rotation=7,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=7]", + "minecraft:dark_oak_sign[rotation=7,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=7]", + "minecraft:dark_oak_sign[rotation=8,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=8]", + "minecraft:dark_oak_sign[rotation=8,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=8]", + "minecraft:dark_oak_sign[rotation=9,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=9]", + "minecraft:dark_oak_sign[rotation=9,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=9]", + "minecraft:dark_oak_sign[rotation=10,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=10]", + "minecraft:dark_oak_sign[rotation=10,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=10]", + "minecraft:dark_oak_sign[rotation=11,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=11]", + "minecraft:dark_oak_sign[rotation=11,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=11]", + "minecraft:dark_oak_sign[rotation=12,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=12]", + "minecraft:dark_oak_sign[rotation=12,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=12]", + "minecraft:dark_oak_sign[rotation=13,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=13]", + "minecraft:dark_oak_sign[rotation=13,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=13]", + "minecraft:dark_oak_sign[rotation=14,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=14]", + "minecraft:dark_oak_sign[rotation=14,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=14]", + "minecraft:dark_oak_sign[rotation=15,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=15]", + "minecraft:dark_oak_sign[rotation=15,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=15]", + "minecraft:pale_oak_sign[rotation=0,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=0]", + "minecraft:pale_oak_sign[rotation=0,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=0]", + "minecraft:pale_oak_sign[rotation=1,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=1]", + "minecraft:pale_oak_sign[rotation=1,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=1]", + "minecraft:pale_oak_sign[rotation=2,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=2]", + "minecraft:pale_oak_sign[rotation=2,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=2]", + "minecraft:pale_oak_sign[rotation=3,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=3]", + "minecraft:pale_oak_sign[rotation=3,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=3]", + "minecraft:pale_oak_sign[rotation=4,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=4]", + "minecraft:pale_oak_sign[rotation=4,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=4]", + "minecraft:pale_oak_sign[rotation=5,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=5]", + "minecraft:pale_oak_sign[rotation=5,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=5]", + "minecraft:pale_oak_sign[rotation=6,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=6]", + "minecraft:pale_oak_sign[rotation=6,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=6]", + "minecraft:pale_oak_sign[rotation=7,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=7]", + "minecraft:pale_oak_sign[rotation=7,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=7]", + "minecraft:pale_oak_sign[rotation=8,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=8]", + "minecraft:pale_oak_sign[rotation=8,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=8]", + "minecraft:pale_oak_sign[rotation=9,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=9]", + "minecraft:pale_oak_sign[rotation=9,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=9]", + "minecraft:pale_oak_sign[rotation=10,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=10]", + "minecraft:pale_oak_sign[rotation=10,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=10]", + "minecraft:pale_oak_sign[rotation=11,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=11]", + "minecraft:pale_oak_sign[rotation=11,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=11]", + "minecraft:pale_oak_sign[rotation=12,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=12]", + "minecraft:pale_oak_sign[rotation=12,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=12]", + "minecraft:pale_oak_sign[rotation=13,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=13]", + "minecraft:pale_oak_sign[rotation=13,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=13]", + "minecraft:pale_oak_sign[rotation=14,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=14]", + "minecraft:pale_oak_sign[rotation=14,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=14]", + "minecraft:pale_oak_sign[rotation=15,waterlogged=true]": "minecraft:pale_oak_standing_sign[ground_sign_direction=15]", + "minecraft:pale_oak_sign[rotation=15,waterlogged=false]": "minecraft:pale_oak_standing_sign[ground_sign_direction=15]", + "minecraft:mangrove_sign[rotation=0,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=0]", + "minecraft:mangrove_sign[rotation=0,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=0]", + "minecraft:mangrove_sign[rotation=1,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=1]", + "minecraft:mangrove_sign[rotation=1,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=1]", + "minecraft:mangrove_sign[rotation=2,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=2]", + "minecraft:mangrove_sign[rotation=2,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=2]", + "minecraft:mangrove_sign[rotation=3,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=3]", + "minecraft:mangrove_sign[rotation=3,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=3]", + "minecraft:mangrove_sign[rotation=4,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=4]", + "minecraft:mangrove_sign[rotation=4,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=4]", + "minecraft:mangrove_sign[rotation=5,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=5]", + "minecraft:mangrove_sign[rotation=5,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=5]", + "minecraft:mangrove_sign[rotation=6,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=6]", + "minecraft:mangrove_sign[rotation=6,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=6]", + "minecraft:mangrove_sign[rotation=7,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=7]", + "minecraft:mangrove_sign[rotation=7,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=7]", + "minecraft:mangrove_sign[rotation=8,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=8]", + "minecraft:mangrove_sign[rotation=8,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=8]", + "minecraft:mangrove_sign[rotation=9,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=9]", + "minecraft:mangrove_sign[rotation=9,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=9]", + "minecraft:mangrove_sign[rotation=10,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=10]", + "minecraft:mangrove_sign[rotation=10,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=10]", + "minecraft:mangrove_sign[rotation=11,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=11]", + "minecraft:mangrove_sign[rotation=11,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=11]", + "minecraft:mangrove_sign[rotation=12,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=12]", + "minecraft:mangrove_sign[rotation=12,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=12]", + "minecraft:mangrove_sign[rotation=13,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=13]", + "minecraft:mangrove_sign[rotation=13,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=13]", + "minecraft:mangrove_sign[rotation=14,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=14]", + "minecraft:mangrove_sign[rotation=14,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=14]", + "minecraft:mangrove_sign[rotation=15,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=15]", + "minecraft:mangrove_sign[rotation=15,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=15]", + "minecraft:bamboo_sign[rotation=0,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=0]", + "minecraft:bamboo_sign[rotation=0,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=0]", + "minecraft:bamboo_sign[rotation=1,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=1]", + "minecraft:bamboo_sign[rotation=1,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=1]", + "minecraft:bamboo_sign[rotation=2,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=2]", + "minecraft:bamboo_sign[rotation=2,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=2]", + "minecraft:bamboo_sign[rotation=3,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=3]", + "minecraft:bamboo_sign[rotation=3,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=3]", + "minecraft:bamboo_sign[rotation=4,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=4]", + "minecraft:bamboo_sign[rotation=4,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=4]", + "minecraft:bamboo_sign[rotation=5,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=5]", + "minecraft:bamboo_sign[rotation=5,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=5]", + "minecraft:bamboo_sign[rotation=6,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=6]", + "minecraft:bamboo_sign[rotation=6,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=6]", + "minecraft:bamboo_sign[rotation=7,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=7]", + "minecraft:bamboo_sign[rotation=7,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=7]", + "minecraft:bamboo_sign[rotation=8,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=8]", + "minecraft:bamboo_sign[rotation=8,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=8]", + "minecraft:bamboo_sign[rotation=9,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=9]", + "minecraft:bamboo_sign[rotation=9,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=9]", + "minecraft:bamboo_sign[rotation=10,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=10]", + "minecraft:bamboo_sign[rotation=10,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=10]", + "minecraft:bamboo_sign[rotation=11,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=11]", + "minecraft:bamboo_sign[rotation=11,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=11]", + "minecraft:bamboo_sign[rotation=12,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=12]", + "minecraft:bamboo_sign[rotation=12,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=12]", + "minecraft:bamboo_sign[rotation=13,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=13]", + "minecraft:bamboo_sign[rotation=13,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=13]", + "minecraft:bamboo_sign[rotation=14,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=14]", + "minecraft:bamboo_sign[rotation=14,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=14]", + "minecraft:bamboo_sign[rotation=15,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=15]", + "minecraft:bamboo_sign[rotation=15,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=15]", + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:wooden_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:ladder[facing=north,waterlogged=true]": "minecraft:ladder[facing_direction=2]", + "minecraft:ladder[facing=north,waterlogged=false]": "minecraft:ladder[facing_direction=2]", + "minecraft:ladder[facing=south,waterlogged=true]": "minecraft:ladder[facing_direction=3]", + "minecraft:ladder[facing=south,waterlogged=false]": "minecraft:ladder[facing_direction=3]", + "minecraft:ladder[facing=west,waterlogged=true]": "minecraft:ladder[facing_direction=4]", + "minecraft:ladder[facing=west,waterlogged=false]": "minecraft:ladder[facing_direction=4]", + "minecraft:ladder[facing=east,waterlogged=true]": "minecraft:ladder[facing_direction=5]", + "minecraft:ladder[facing=east,waterlogged=false]": "minecraft:ladder[facing_direction=5]", + "minecraft:rail[shape=north_south,waterlogged=true]": "minecraft:rail[rail_direction=0]", + "minecraft:rail[shape=north_south,waterlogged=false]": "minecraft:rail[rail_direction=0]", + "minecraft:rail[shape=east_west,waterlogged=true]": "minecraft:rail[rail_direction=1]", + "minecraft:rail[shape=east_west,waterlogged=false]": "minecraft:rail[rail_direction=1]", + "minecraft:rail[shape=ascending_east,waterlogged=true]": "minecraft:rail[rail_direction=2]", + "minecraft:rail[shape=ascending_east,waterlogged=false]": "minecraft:rail[rail_direction=2]", + "minecraft:rail[shape=ascending_west,waterlogged=true]": "minecraft:rail[rail_direction=3]", + "minecraft:rail[shape=ascending_west,waterlogged=false]": "minecraft:rail[rail_direction=3]", + "minecraft:rail[shape=ascending_north,waterlogged=true]": "minecraft:rail[rail_direction=4]", + "minecraft:rail[shape=ascending_north,waterlogged=false]": "minecraft:rail[rail_direction=4]", + "minecraft:rail[shape=ascending_south,waterlogged=true]": "minecraft:rail[rail_direction=5]", + "minecraft:rail[shape=ascending_south,waterlogged=false]": "minecraft:rail[rail_direction=5]", + "minecraft:rail[shape=south_east,waterlogged=true]": "minecraft:rail[rail_direction=6]", + "minecraft:rail[shape=south_east,waterlogged=false]": "minecraft:rail[rail_direction=6]", + "minecraft:rail[shape=south_west,waterlogged=true]": "minecraft:rail[rail_direction=7]", + "minecraft:rail[shape=south_west,waterlogged=false]": "minecraft:rail[rail_direction=7]", + "minecraft:rail[shape=north_west,waterlogged=true]": "minecraft:rail[rail_direction=8]", + "minecraft:rail[shape=north_west,waterlogged=false]": "minecraft:rail[rail_direction=8]", + "minecraft:rail[shape=north_east,waterlogged=true]": "minecraft:rail[rail_direction=9]", + "minecraft:rail[shape=north_east,waterlogged=false]": "minecraft:rail[rail_direction=9]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_wall_sign[facing=north,waterlogged=true]": "minecraft:wall_sign[facing_direction=2]", + "minecraft:oak_wall_sign[facing=north,waterlogged=false]": "minecraft:wall_sign[facing_direction=2]", + "minecraft:oak_wall_sign[facing=south,waterlogged=true]": "minecraft:wall_sign[facing_direction=3]", + "minecraft:oak_wall_sign[facing=south,waterlogged=false]": "minecraft:wall_sign[facing_direction=3]", + "minecraft:oak_wall_sign[facing=west,waterlogged=true]": "minecraft:wall_sign[facing_direction=4]", + "minecraft:oak_wall_sign[facing=west,waterlogged=false]": "minecraft:wall_sign[facing_direction=4]", + "minecraft:oak_wall_sign[facing=east,waterlogged=true]": "minecraft:wall_sign[facing_direction=5]", + "minecraft:oak_wall_sign[facing=east,waterlogged=false]": "minecraft:wall_sign[facing_direction=5]", + "minecraft:spruce_wall_sign[facing=north,waterlogged=true]": "minecraft:spruce_wall_sign[facing_direction=2]", + "minecraft:spruce_wall_sign[facing=north,waterlogged=false]": "minecraft:spruce_wall_sign[facing_direction=2]", + "minecraft:spruce_wall_sign[facing=south,waterlogged=true]": "minecraft:spruce_wall_sign[facing_direction=3]", + "minecraft:spruce_wall_sign[facing=south,waterlogged=false]": "minecraft:spruce_wall_sign[facing_direction=3]", + "minecraft:spruce_wall_sign[facing=west,waterlogged=true]": "minecraft:spruce_wall_sign[facing_direction=4]", + "minecraft:spruce_wall_sign[facing=west,waterlogged=false]": "minecraft:spruce_wall_sign[facing_direction=4]", + "minecraft:spruce_wall_sign[facing=east,waterlogged=true]": "minecraft:spruce_wall_sign[facing_direction=5]", + "minecraft:spruce_wall_sign[facing=east,waterlogged=false]": "minecraft:spruce_wall_sign[facing_direction=5]", + "minecraft:birch_wall_sign[facing=north,waterlogged=true]": "minecraft:birch_wall_sign[facing_direction=2]", + "minecraft:birch_wall_sign[facing=north,waterlogged=false]": "minecraft:birch_wall_sign[facing_direction=2]", + "minecraft:birch_wall_sign[facing=south,waterlogged=true]": "minecraft:birch_wall_sign[facing_direction=3]", + "minecraft:birch_wall_sign[facing=south,waterlogged=false]": "minecraft:birch_wall_sign[facing_direction=3]", + "minecraft:birch_wall_sign[facing=west,waterlogged=true]": "minecraft:birch_wall_sign[facing_direction=4]", + "minecraft:birch_wall_sign[facing=west,waterlogged=false]": "minecraft:birch_wall_sign[facing_direction=4]", + "minecraft:birch_wall_sign[facing=east,waterlogged=true]": "minecraft:birch_wall_sign[facing_direction=5]", + "minecraft:birch_wall_sign[facing=east,waterlogged=false]": "minecraft:birch_wall_sign[facing_direction=5]", + "minecraft:acacia_wall_sign[facing=north,waterlogged=true]": "minecraft:acacia_wall_sign[facing_direction=2]", + "minecraft:acacia_wall_sign[facing=north,waterlogged=false]": "minecraft:acacia_wall_sign[facing_direction=2]", + "minecraft:acacia_wall_sign[facing=south,waterlogged=true]": "minecraft:acacia_wall_sign[facing_direction=3]", + "minecraft:acacia_wall_sign[facing=south,waterlogged=false]": "minecraft:acacia_wall_sign[facing_direction=3]", + "minecraft:acacia_wall_sign[facing=west,waterlogged=true]": "minecraft:acacia_wall_sign[facing_direction=4]", + "minecraft:acacia_wall_sign[facing=west,waterlogged=false]": "minecraft:acacia_wall_sign[facing_direction=4]", + "minecraft:acacia_wall_sign[facing=east,waterlogged=true]": "minecraft:acacia_wall_sign[facing_direction=5]", + "minecraft:acacia_wall_sign[facing=east,waterlogged=false]": "minecraft:acacia_wall_sign[facing_direction=5]", + "minecraft:cherry_wall_sign[facing=north,waterlogged=true]": "minecraft:cherry_wall_sign[facing_direction=2]", + "minecraft:cherry_wall_sign[facing=north,waterlogged=false]": "minecraft:cherry_wall_sign[facing_direction=2]", + "minecraft:cherry_wall_sign[facing=south,waterlogged=true]": "minecraft:cherry_wall_sign[facing_direction=3]", + "minecraft:cherry_wall_sign[facing=south,waterlogged=false]": "minecraft:cherry_wall_sign[facing_direction=3]", + "minecraft:cherry_wall_sign[facing=west,waterlogged=true]": "minecraft:cherry_wall_sign[facing_direction=4]", + "minecraft:cherry_wall_sign[facing=west,waterlogged=false]": "minecraft:cherry_wall_sign[facing_direction=4]", + "minecraft:cherry_wall_sign[facing=east,waterlogged=true]": "minecraft:cherry_wall_sign[facing_direction=5]", + "minecraft:cherry_wall_sign[facing=east,waterlogged=false]": "minecraft:cherry_wall_sign[facing_direction=5]", + "minecraft:jungle_wall_sign[facing=north,waterlogged=true]": "minecraft:jungle_wall_sign[facing_direction=2]", + "minecraft:jungle_wall_sign[facing=north,waterlogged=false]": "minecraft:jungle_wall_sign[facing_direction=2]", + "minecraft:jungle_wall_sign[facing=south,waterlogged=true]": "minecraft:jungle_wall_sign[facing_direction=3]", + "minecraft:jungle_wall_sign[facing=south,waterlogged=false]": "minecraft:jungle_wall_sign[facing_direction=3]", + "minecraft:jungle_wall_sign[facing=west,waterlogged=true]": "minecraft:jungle_wall_sign[facing_direction=4]", + "minecraft:jungle_wall_sign[facing=west,waterlogged=false]": "minecraft:jungle_wall_sign[facing_direction=4]", + "minecraft:jungle_wall_sign[facing=east,waterlogged=true]": "minecraft:jungle_wall_sign[facing_direction=5]", + "minecraft:jungle_wall_sign[facing=east,waterlogged=false]": "minecraft:jungle_wall_sign[facing_direction=5]", + "minecraft:dark_oak_wall_sign[facing=north,waterlogged=true]": "minecraft:darkoak_wall_sign[facing_direction=2]", + "minecraft:dark_oak_wall_sign[facing=north,waterlogged=false]": "minecraft:darkoak_wall_sign[facing_direction=2]", + "minecraft:dark_oak_wall_sign[facing=south,waterlogged=true]": "minecraft:darkoak_wall_sign[facing_direction=3]", + "minecraft:dark_oak_wall_sign[facing=south,waterlogged=false]": "minecraft:darkoak_wall_sign[facing_direction=3]", + "minecraft:dark_oak_wall_sign[facing=west,waterlogged=true]": "minecraft:darkoak_wall_sign[facing_direction=4]", + "minecraft:dark_oak_wall_sign[facing=west,waterlogged=false]": "minecraft:darkoak_wall_sign[facing_direction=4]", + "minecraft:dark_oak_wall_sign[facing=east,waterlogged=true]": "minecraft:darkoak_wall_sign[facing_direction=5]", + "minecraft:dark_oak_wall_sign[facing=east,waterlogged=false]": "minecraft:darkoak_wall_sign[facing_direction=5]", + "minecraft:pale_oak_wall_sign[facing=north,waterlogged=true]": "minecraft:pale_oak_wall_sign[facing_direction=2]", + "minecraft:pale_oak_wall_sign[facing=north,waterlogged=false]": "minecraft:pale_oak_wall_sign[facing_direction=2]", + "minecraft:pale_oak_wall_sign[facing=south,waterlogged=true]": "minecraft:pale_oak_wall_sign[facing_direction=3]", + "minecraft:pale_oak_wall_sign[facing=south,waterlogged=false]": "minecraft:pale_oak_wall_sign[facing_direction=3]", + "minecraft:pale_oak_wall_sign[facing=west,waterlogged=true]": "minecraft:pale_oak_wall_sign[facing_direction=4]", + "minecraft:pale_oak_wall_sign[facing=west,waterlogged=false]": "minecraft:pale_oak_wall_sign[facing_direction=4]", + "minecraft:pale_oak_wall_sign[facing=east,waterlogged=true]": "minecraft:pale_oak_wall_sign[facing_direction=5]", + "minecraft:pale_oak_wall_sign[facing=east,waterlogged=false]": "minecraft:pale_oak_wall_sign[facing_direction=5]", + "minecraft:mangrove_wall_sign[facing=north,waterlogged=true]": "minecraft:mangrove_wall_sign[facing_direction=2]", + "minecraft:mangrove_wall_sign[facing=north,waterlogged=false]": "minecraft:mangrove_wall_sign[facing_direction=2]", + "minecraft:mangrove_wall_sign[facing=south,waterlogged=true]": "minecraft:mangrove_wall_sign[facing_direction=3]", + "minecraft:mangrove_wall_sign[facing=south,waterlogged=false]": "minecraft:mangrove_wall_sign[facing_direction=3]", + "minecraft:mangrove_wall_sign[facing=west,waterlogged=true]": "minecraft:mangrove_wall_sign[facing_direction=4]", + "minecraft:mangrove_wall_sign[facing=west,waterlogged=false]": "minecraft:mangrove_wall_sign[facing_direction=4]", + "minecraft:mangrove_wall_sign[facing=east,waterlogged=true]": "minecraft:mangrove_wall_sign[facing_direction=5]", + "minecraft:mangrove_wall_sign[facing=east,waterlogged=false]": "minecraft:mangrove_wall_sign[facing_direction=5]", + "minecraft:bamboo_wall_sign[facing=north,waterlogged=true]": "minecraft:bamboo_wall_sign[facing_direction=2]", + "minecraft:bamboo_wall_sign[facing=north,waterlogged=false]": "minecraft:bamboo_wall_sign[facing_direction=2]", + "minecraft:bamboo_wall_sign[facing=south,waterlogged=true]": "minecraft:bamboo_wall_sign[facing_direction=3]", + "minecraft:bamboo_wall_sign[facing=south,waterlogged=false]": "minecraft:bamboo_wall_sign[facing_direction=3]", + "minecraft:bamboo_wall_sign[facing=west,waterlogged=true]": "minecraft:bamboo_wall_sign[facing_direction=4]", + "minecraft:bamboo_wall_sign[facing=west,waterlogged=false]": "minecraft:bamboo_wall_sign[facing_direction=4]", + "minecraft:bamboo_wall_sign[facing=east,waterlogged=true]": "minecraft:bamboo_wall_sign[facing_direction=5]", + "minecraft:bamboo_wall_sign[facing=east,waterlogged=false]": "minecraft:bamboo_wall_sign[facing_direction=5]", + "minecraft:oak_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:pale_oak_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:oak_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:pale_oak_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:pale_oak_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:pale_oak_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:pale_oak_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:pale_oak_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:pale_oak_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:pale_oak_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:pale_oak_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:pale_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:lever[face=floor,facing=north,powered=true]": "minecraft:lever[lever_direction=up_north_south,open_bit=true]", + "minecraft:lever[face=floor,facing=north,powered=false]": "minecraft:lever[lever_direction=up_north_south,open_bit=false]", + "minecraft:lever[face=floor,facing=south,powered=true]": "minecraft:lever[lever_direction=up_north_south,open_bit=false]", + "minecraft:lever[face=floor,facing=south,powered=false]": "minecraft:lever[lever_direction=up_north_south,open_bit=true]", + "minecraft:lever[face=floor,facing=west,powered=true]": "minecraft:lever[lever_direction=up_east_west,open_bit=true]", + "minecraft:lever[face=floor,facing=west,powered=false]": "minecraft:lever[lever_direction=up_east_west,open_bit=false]", + "minecraft:lever[face=floor,facing=east,powered=true]": "minecraft:lever[lever_direction=up_east_west,open_bit=false]", + "minecraft:lever[face=floor,facing=east,powered=false]": "minecraft:lever[lever_direction=up_east_west,open_bit=true]", + "minecraft:lever[face=wall,facing=north,powered=true]": "minecraft:lever[lever_direction=north,open_bit=true]", + "minecraft:lever[face=wall,facing=north,powered=false]": "minecraft:lever[lever_direction=north,open_bit=false]", + "minecraft:lever[face=wall,facing=south,powered=true]": "minecraft:lever[lever_direction=south,open_bit=true]", + "minecraft:lever[face=wall,facing=south,powered=false]": "minecraft:lever[lever_direction=south,open_bit=false]", + "minecraft:lever[face=wall,facing=west,powered=true]": "minecraft:lever[lever_direction=west,open_bit=true]", + "minecraft:lever[face=wall,facing=west,powered=false]": "minecraft:lever[lever_direction=west,open_bit=false]", + "minecraft:lever[face=wall,facing=east,powered=true]": "minecraft:lever[lever_direction=east,open_bit=true]", + "minecraft:lever[face=wall,facing=east,powered=false]": "minecraft:lever[lever_direction=east,open_bit=false]", + "minecraft:lever[face=ceiling,facing=north,powered=true]": "minecraft:lever[lever_direction=down_north_south,open_bit=true]", + "minecraft:lever[face=ceiling,facing=north,powered=false]": "minecraft:lever[lever_direction=down_north_south,open_bit=false]", + "minecraft:lever[face=ceiling,facing=south,powered=true]": "minecraft:lever[lever_direction=down_north_south,open_bit=false]", + "minecraft:lever[face=ceiling,facing=south,powered=false]": "minecraft:lever[lever_direction=down_north_south,open_bit=true]", + "minecraft:lever[face=ceiling,facing=west,powered=true]": "minecraft:lever[lever_direction=down_east_west,open_bit=true]", + "minecraft:lever[face=ceiling,facing=west,powered=false]": "minecraft:lever[lever_direction=down_east_west,open_bit=false]", + "minecraft:lever[face=ceiling,facing=east,powered=true]": "minecraft:lever[lever_direction=down_east_west,open_bit=false]", + "minecraft:lever[face=ceiling,facing=east,powered=false]": "minecraft:lever[lever_direction=down_east_west,open_bit=true]", + "minecraft:stone_pressure_plate[powered=true]": "minecraft:stone_pressure_plate[redstone_signal=15]", + "minecraft:stone_pressure_plate[powered=false]": "minecraft:stone_pressure_plate[redstone_signal=0]", + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:iron_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:oak_pressure_plate[powered=true]": "minecraft:wooden_pressure_plate[redstone_signal=15]", + "minecraft:oak_pressure_plate[powered=false]": "minecraft:wooden_pressure_plate[redstone_signal=0]", + "minecraft:spruce_pressure_plate[powered=true]": "minecraft:spruce_pressure_plate[redstone_signal=15]", + "minecraft:spruce_pressure_plate[powered=false]": "minecraft:spruce_pressure_plate[redstone_signal=0]", + "minecraft:birch_pressure_plate[powered=true]": "minecraft:birch_pressure_plate[redstone_signal=15]", + "minecraft:birch_pressure_plate[powered=false]": "minecraft:birch_pressure_plate[redstone_signal=0]", + "minecraft:jungle_pressure_plate[powered=true]": "minecraft:jungle_pressure_plate[redstone_signal=15]", + "minecraft:jungle_pressure_plate[powered=false]": "minecraft:jungle_pressure_plate[redstone_signal=0]", + "minecraft:acacia_pressure_plate[powered=true]": "minecraft:acacia_pressure_plate[redstone_signal=15]", + "minecraft:acacia_pressure_plate[powered=false]": "minecraft:acacia_pressure_plate[redstone_signal=0]", + "minecraft:cherry_pressure_plate[powered=true]": "minecraft:cherry_pressure_plate[redstone_signal=15]", + "minecraft:cherry_pressure_plate[powered=false]": "minecraft:cherry_pressure_plate[redstone_signal=0]", + "minecraft:dark_oak_pressure_plate[powered=true]": "minecraft:dark_oak_pressure_plate[redstone_signal=15]", + "minecraft:dark_oak_pressure_plate[powered=false]": "minecraft:dark_oak_pressure_plate[redstone_signal=0]", + "minecraft:pale_oak_pressure_plate[powered=true]": "minecraft:pale_oak_pressure_plate[redstone_signal=15]", + "minecraft:pale_oak_pressure_plate[powered=false]": "minecraft:pale_oak_pressure_plate[redstone_signal=0]", + "minecraft:mangrove_pressure_plate[powered=true]": "minecraft:mangrove_pressure_plate[redstone_signal=15]", + "minecraft:mangrove_pressure_plate[powered=false]": "minecraft:mangrove_pressure_plate[redstone_signal=0]", + "minecraft:bamboo_pressure_plate[powered=true]": "minecraft:bamboo_pressure_plate[redstone_signal=15]", + "minecraft:bamboo_pressure_plate[powered=false]": "minecraft:bamboo_pressure_plate[redstone_signal=0]", + "minecraft:redstone_ore[lit=true]": "minecraft:lit_redstone_ore[]", + "minecraft:redstone_ore[lit=false]": "minecraft:redstone_ore[]", + "minecraft:deepslate_redstone_ore[lit=true]": "minecraft:lit_deepslate_redstone_ore[]", + "minecraft:deepslate_redstone_ore[lit=false]": "minecraft:deepslate_redstone_ore[]", + "minecraft:redstone_torch[lit=true]": "minecraft:redstone_torch[torch_facing_direction=top]", + "minecraft:redstone_torch[lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=top]", + "minecraft:redstone_wall_torch[facing=north,lit=true]": "minecraft:redstone_torch[torch_facing_direction=south]", + "minecraft:redstone_wall_torch[facing=north,lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=south]", + "minecraft:redstone_wall_torch[facing=south,lit=true]": "minecraft:redstone_torch[torch_facing_direction=north]", + "minecraft:redstone_wall_torch[facing=south,lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=north]", + "minecraft:redstone_wall_torch[facing=west,lit=true]": "minecraft:redstone_torch[torch_facing_direction=east]", + "minecraft:redstone_wall_torch[facing=west,lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=east]", + "minecraft:redstone_wall_torch[facing=east,lit=true]": "minecraft:redstone_torch[torch_facing_direction=west]", + "minecraft:redstone_wall_torch[facing=east,lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=west]", + "minecraft:stone_button[face=floor,facing=north,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=north,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=south,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=south,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=west,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=west,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=east,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=east,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:stone_button[face=wall,facing=north,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:stone_button[face=wall,facing=north,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:stone_button[face=wall,facing=south,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:stone_button[face=wall,facing=south,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:stone_button[face=wall,facing=west,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:stone_button[face=wall,facing=west,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:stone_button[face=wall,facing=east,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:stone_button[face=wall,facing=east,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:stone_button[face=ceiling,facing=north,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=north,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=south,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=south,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=west,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=west,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=east,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=east,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:snow[layers=1]": "minecraft:snow_layer[covered_bit=false,height=0]", + "minecraft:snow[layers=2]": "minecraft:snow_layer[covered_bit=false,height=1]", + "minecraft:snow[layers=3]": "minecraft:snow_layer[covered_bit=false,height=2]", + "minecraft:snow[layers=4]": "minecraft:snow_layer[covered_bit=false,height=3]", + "minecraft:snow[layers=5]": "minecraft:snow_layer[covered_bit=false,height=4]", + "minecraft:snow[layers=6]": "minecraft:snow_layer[covered_bit=false,height=5]", + "minecraft:snow[layers=7]": "minecraft:snow_layer[covered_bit=false,height=6]", + "minecraft:snow[layers=8]": "minecraft:snow_layer[covered_bit=false,height=7]", + "minecraft:ice[]": "minecraft:ice[]", + "minecraft:snow_block[]": "minecraft:snow[]", + "minecraft:cactus[age=0]": "minecraft:cactus[age=0]", + "minecraft:cactus[age=1]": "minecraft:cactus[age=1]", + "minecraft:cactus[age=2]": "minecraft:cactus[age=2]", + "minecraft:cactus[age=3]": "minecraft:cactus[age=3]", + "minecraft:cactus[age=4]": "minecraft:cactus[age=4]", + "minecraft:cactus[age=5]": "minecraft:cactus[age=5]", + "minecraft:cactus[age=6]": "minecraft:cactus[age=6]", + "minecraft:cactus[age=7]": "minecraft:cactus[age=7]", + "minecraft:cactus[age=8]": "minecraft:cactus[age=8]", + "minecraft:cactus[age=9]": "minecraft:cactus[age=9]", + "minecraft:cactus[age=10]": "minecraft:cactus[age=10]", + "minecraft:cactus[age=11]": "minecraft:cactus[age=11]", + "minecraft:cactus[age=12]": "minecraft:cactus[age=12]", + "minecraft:cactus[age=13]": "minecraft:cactus[age=13]", + "minecraft:cactus[age=14]": "minecraft:cactus[age=14]", + "minecraft:cactus[age=15]": "minecraft:cactus[age=15]", + "minecraft:cactus_flower[]": "minecraft:cactus_flower[]", + "minecraft:clay[]": "minecraft:clay[]", + "minecraft:sugar_cane[age=0]": "minecraft:reeds[age=0]", + "minecraft:sugar_cane[age=1]": "minecraft:reeds[age=1]", + "minecraft:sugar_cane[age=2]": "minecraft:reeds[age=2]", + "minecraft:sugar_cane[age=3]": "minecraft:reeds[age=3]", + "minecraft:sugar_cane[age=4]": "minecraft:reeds[age=4]", + "minecraft:sugar_cane[age=5]": "minecraft:reeds[age=5]", + "minecraft:sugar_cane[age=6]": "minecraft:reeds[age=6]", + "minecraft:sugar_cane[age=7]": "minecraft:reeds[age=7]", + "minecraft:sugar_cane[age=8]": "minecraft:reeds[age=8]", + "minecraft:sugar_cane[age=9]": "minecraft:reeds[age=9]", + "minecraft:sugar_cane[age=10]": "minecraft:reeds[age=10]", + "minecraft:sugar_cane[age=11]": "minecraft:reeds[age=11]", + "minecraft:sugar_cane[age=12]": "minecraft:reeds[age=12]", + "minecraft:sugar_cane[age=13]": "minecraft:reeds[age=13]", + "minecraft:sugar_cane[age=14]": "minecraft:reeds[age=14]", + "minecraft:sugar_cane[age=15]": "minecraft:reeds[age=15]", + "minecraft:jukebox[has_record=true]": "minecraft:jukebox[]", + "minecraft:jukebox[has_record=false]": "minecraft:jukebox[]", + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:netherrack[]": "minecraft:netherrack[]", + "minecraft:soul_sand[]": "minecraft:soul_sand[]", + "minecraft:soul_soil[]": "minecraft:soul_soil[]", + "minecraft:basalt[axis=x]": "minecraft:basalt[pillar_axis=x]", + "minecraft:basalt[axis=y]": "minecraft:basalt[pillar_axis=y]", + "minecraft:basalt[axis=z]": "minecraft:basalt[pillar_axis=z]", + "minecraft:polished_basalt[axis=x]": "minecraft:polished_basalt[pillar_axis=x]", + "minecraft:polished_basalt[axis=y]": "minecraft:polished_basalt[pillar_axis=y]", + "minecraft:polished_basalt[axis=z]": "minecraft:polished_basalt[pillar_axis=z]", + "minecraft:soul_torch[]": "minecraft:soul_torch[torch_facing_direction=top]", + "minecraft:soul_wall_torch[facing=north]": "minecraft:soul_torch[torch_facing_direction=south]", + "minecraft:soul_wall_torch[facing=south]": "minecraft:soul_torch[torch_facing_direction=north]", + "minecraft:soul_wall_torch[facing=west]": "minecraft:soul_torch[torch_facing_direction=east]", + "minecraft:soul_wall_torch[facing=east]": "minecraft:soul_torch[torch_facing_direction=west]", + "minecraft:glowstone[]": "minecraft:glowstone[]", + "minecraft:nether_portal[axis=x]": "minecraft:portal[portal_axis=x]", + "minecraft:nether_portal[axis=z]": "minecraft:portal[portal_axis=z]", + "minecraft:carved_pumpkin[facing=north]": "minecraft:carved_pumpkin[minecraft:cardinal_direction=north]", + "minecraft:carved_pumpkin[facing=south]": "minecraft:carved_pumpkin[minecraft:cardinal_direction=south]", + "minecraft:carved_pumpkin[facing=west]": "minecraft:carved_pumpkin[minecraft:cardinal_direction=west]", + "minecraft:carved_pumpkin[facing=east]": "minecraft:carved_pumpkin[minecraft:cardinal_direction=east]", + "minecraft:jack_o_lantern[facing=north]": "minecraft:lit_pumpkin[minecraft:cardinal_direction=north]", + "minecraft:jack_o_lantern[facing=south]": "minecraft:lit_pumpkin[minecraft:cardinal_direction=south]", + "minecraft:jack_o_lantern[facing=west]": "minecraft:lit_pumpkin[minecraft:cardinal_direction=west]", + "minecraft:jack_o_lantern[facing=east]": "minecraft:lit_pumpkin[minecraft:cardinal_direction=east]", + "minecraft:cake[bites=0]": "minecraft:cake[bite_counter=0]", + "minecraft:cake[bites=1]": "minecraft:cake[bite_counter=1]", + "minecraft:cake[bites=2]": "minecraft:cake[bite_counter=2]", + "minecraft:cake[bites=3]": "minecraft:cake[bite_counter=3]", + "minecraft:cake[bites=4]": "minecraft:cake[bite_counter=4]", + "minecraft:cake[bites=5]": "minecraft:cake[bite_counter=5]", + "minecraft:cake[bites=6]": "minecraft:cake[bite_counter=6]", + "minecraft:repeater[delay=1,facing=north,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=north,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=north,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=north,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=south,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=south,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=south,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=south,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=west,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=west,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=west,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=west,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=east,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=east,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=east,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=east,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]", + "minecraft:repeater[delay=2,facing=north,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=north,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=north,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=north,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=south,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=south,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=south,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=south,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=west,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=west,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=west,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=west,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=east,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=east,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=east,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=east,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]", + "minecraft:repeater[delay=3,facing=north,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=north,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=north,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=north,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=south,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=south,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=south,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=south,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=west,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=west,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=west,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=west,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=east,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=east,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=east,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=east,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]", + "minecraft:repeater[delay=4,facing=north,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=north,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=north,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=north,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=south,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=south,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=south,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=south,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=west,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=west,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=west,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=west,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=east,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=east,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=east,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=east,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]", + "minecraft:white_stained_glass[]": "minecraft:white_stained_glass[]", + "minecraft:orange_stained_glass[]": "minecraft:orange_stained_glass[]", + "minecraft:magenta_stained_glass[]": "minecraft:magenta_stained_glass[]", + "minecraft:light_blue_stained_glass[]": "minecraft:light_blue_stained_glass[]", + "minecraft:yellow_stained_glass[]": "minecraft:yellow_stained_glass[]", + "minecraft:lime_stained_glass[]": "minecraft:lime_stained_glass[]", + "minecraft:pink_stained_glass[]": "minecraft:pink_stained_glass[]", + "minecraft:gray_stained_glass[]": "minecraft:gray_stained_glass[]", + "minecraft:light_gray_stained_glass[]": "minecraft:light_gray_stained_glass[]", + "minecraft:cyan_stained_glass[]": "minecraft:cyan_stained_glass[]", + "minecraft:purple_stained_glass[]": "minecraft:purple_stained_glass[]", + "minecraft:blue_stained_glass[]": "minecraft:blue_stained_glass[]", + "minecraft:brown_stained_glass[]": "minecraft:brown_stained_glass[]", + "minecraft:green_stained_glass[]": "minecraft:green_stained_glass[]", + "minecraft:red_stained_glass[]": "minecraft:red_stained_glass[]", + "minecraft:black_stained_glass[]": "minecraft:black_stained_glass[]", + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:pale_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:pale_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:pale_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:stone_bricks[]": "minecraft:stone_bricks[]", + "minecraft:mossy_stone_bricks[]": "minecraft:mossy_stone_bricks[]", + "minecraft:cracked_stone_bricks[]": "minecraft:cracked_stone_bricks[]", + "minecraft:chiseled_stone_bricks[]": "minecraft:chiseled_stone_bricks[]", + "minecraft:packed_mud[]": "minecraft:packed_mud[]", + "minecraft:mud_bricks[]": "minecraft:mud_bricks[]", + "minecraft:infested_stone[]": "minecraft:infested_stone[]", + "minecraft:infested_cobblestone[]": "minecraft:infested_cobblestone[]", + "minecraft:infested_stone_bricks[]": "minecraft:infested_stone_bricks[]", + "minecraft:infested_mossy_stone_bricks[]": "minecraft:infested_mossy_stone_bricks[]", + "minecraft:infested_cracked_stone_bricks[]": "minecraft:infested_cracked_stone_bricks[]", + "minecraft:infested_chiseled_stone_bricks[]": "minecraft:infested_chiseled_stone_bricks[]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=3]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=9]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=6]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=1]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=2]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=7]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=8]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=4]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=5]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=0]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=3]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=9]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=6]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=1]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=2]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=7]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=8]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=4]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=5]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=0]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=0]", + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:chain[axis=x,waterlogged=true]": "minecraft:chain[pillar_axis=x]", + "minecraft:chain[axis=x,waterlogged=false]": "minecraft:chain[pillar_axis=x]", + "minecraft:chain[axis=y,waterlogged=true]": "minecraft:chain[pillar_axis=y]", + "minecraft:chain[axis=y,waterlogged=false]": "minecraft:chain[pillar_axis=y]", + "minecraft:chain[axis=z,waterlogged=true]": "minecraft:chain[pillar_axis=z]", + "minecraft:chain[axis=z,waterlogged=false]": "minecraft:chain[pillar_axis=z]", + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:pumpkin[]": "minecraft:pumpkin[minecraft:cardinal_direction=north]", + "minecraft:melon[]": "minecraft:melon_block[]", + "minecraft:attached_pumpkin_stem[facing=north]": "minecraft:pumpkin_stem[facing_direction=2,growth=7]", + "minecraft:attached_pumpkin_stem[facing=south]": "minecraft:pumpkin_stem[facing_direction=3,growth=7]", + "minecraft:attached_pumpkin_stem[facing=west]": "minecraft:pumpkin_stem[facing_direction=4,growth=7]", + "minecraft:attached_pumpkin_stem[facing=east]": "minecraft:pumpkin_stem[facing_direction=5,growth=7]", + "minecraft:attached_melon_stem[facing=north]": "minecraft:melon_stem[facing_direction=2,growth=7]", + "minecraft:attached_melon_stem[facing=south]": "minecraft:melon_stem[facing_direction=3,growth=7]", + "minecraft:attached_melon_stem[facing=west]": "minecraft:melon_stem[facing_direction=4,growth=7]", + "minecraft:attached_melon_stem[facing=east]": "minecraft:melon_stem[facing_direction=5,growth=7]", + "minecraft:pumpkin_stem[age=0]": "minecraft:pumpkin_stem[facing_direction=0,growth=0]", + "minecraft:pumpkin_stem[age=1]": "minecraft:pumpkin_stem[facing_direction=0,growth=1]", + "minecraft:pumpkin_stem[age=2]": "minecraft:pumpkin_stem[facing_direction=0,growth=2]", + "minecraft:pumpkin_stem[age=3]": "minecraft:pumpkin_stem[facing_direction=0,growth=3]", + "minecraft:pumpkin_stem[age=4]": "minecraft:pumpkin_stem[facing_direction=0,growth=4]", + "minecraft:pumpkin_stem[age=5]": "minecraft:pumpkin_stem[facing_direction=0,growth=5]", + "minecraft:pumpkin_stem[age=6]": "minecraft:pumpkin_stem[facing_direction=0,growth=6]", + "minecraft:pumpkin_stem[age=7]": "minecraft:pumpkin_stem[facing_direction=0,growth=7]", + "minecraft:melon_stem[age=0]": "minecraft:melon_stem[facing_direction=0,growth=0]", + "minecraft:melon_stem[age=1]": "minecraft:melon_stem[facing_direction=0,growth=1]", + "minecraft:melon_stem[age=2]": "minecraft:melon_stem[facing_direction=0,growth=2]", + "minecraft:melon_stem[age=3]": "minecraft:melon_stem[facing_direction=0,growth=3]", + "minecraft:melon_stem[age=4]": "minecraft:melon_stem[facing_direction=0,growth=4]", + "minecraft:melon_stem[age=5]": "minecraft:melon_stem[facing_direction=0,growth=5]", + "minecraft:melon_stem[age=6]": "minecraft:melon_stem[facing_direction=0,growth=6]", + "minecraft:melon_stem[age=7]": "minecraft:melon_stem[facing_direction=0,growth=7]", + "minecraft:vine[east=true,north=true,south=true,up=true,west=true]": "minecraft:vine[vine_direction_bits=15]", + "minecraft:vine[east=true,north=true,south=true,up=true,west=false]": "minecraft:vine[vine_direction_bits=13]", + "minecraft:vine[east=true,north=true,south=true,up=false,west=true]": "minecraft:vine[vine_direction_bits=15]", + "minecraft:vine[east=true,north=true,south=true,up=false,west=false]": "minecraft:vine[vine_direction_bits=13]", + "minecraft:vine[east=true,north=true,south=false,up=true,west=true]": "minecraft:vine[vine_direction_bits=14]", + "minecraft:vine[east=true,north=true,south=false,up=true,west=false]": "minecraft:vine[vine_direction_bits=12]", + "minecraft:vine[east=true,north=true,south=false,up=false,west=true]": "minecraft:vine[vine_direction_bits=14]", + "minecraft:vine[east=true,north=true,south=false,up=false,west=false]": "minecraft:vine[vine_direction_bits=12]", + "minecraft:vine[east=true,north=false,south=true,up=true,west=true]": "minecraft:vine[vine_direction_bits=11]", + "minecraft:vine[east=true,north=false,south=true,up=true,west=false]": "minecraft:vine[vine_direction_bits=9]", + "minecraft:vine[east=true,north=false,south=true,up=false,west=true]": "minecraft:vine[vine_direction_bits=11]", + "minecraft:vine[east=true,north=false,south=true,up=false,west=false]": "minecraft:vine[vine_direction_bits=9]", + "minecraft:vine[east=true,north=false,south=false,up=true,west=true]": "minecraft:vine[vine_direction_bits=10]", + "minecraft:vine[east=true,north=false,south=false,up=true,west=false]": "minecraft:vine[vine_direction_bits=8]", + "minecraft:vine[east=true,north=false,south=false,up=false,west=true]": "minecraft:vine[vine_direction_bits=10]", + "minecraft:vine[east=true,north=false,south=false,up=false,west=false]": "minecraft:vine[vine_direction_bits=8]", + "minecraft:vine[east=false,north=true,south=true,up=true,west=true]": "minecraft:vine[vine_direction_bits=7]", + "minecraft:vine[east=false,north=true,south=true,up=true,west=false]": "minecraft:vine[vine_direction_bits=5]", + "minecraft:vine[east=false,north=true,south=true,up=false,west=true]": "minecraft:vine[vine_direction_bits=7]", + "minecraft:vine[east=false,north=true,south=true,up=false,west=false]": "minecraft:vine[vine_direction_bits=5]", + "minecraft:vine[east=false,north=true,south=false,up=true,west=true]": "minecraft:vine[vine_direction_bits=6]", + "minecraft:vine[east=false,north=true,south=false,up=true,west=false]": "minecraft:vine[vine_direction_bits=4]", + "minecraft:vine[east=false,north=true,south=false,up=false,west=true]": "minecraft:vine[vine_direction_bits=6]", + "minecraft:vine[east=false,north=true,south=false,up=false,west=false]": "minecraft:vine[vine_direction_bits=4]", + "minecraft:vine[east=false,north=false,south=true,up=true,west=true]": "minecraft:vine[vine_direction_bits=3]", + "minecraft:vine[east=false,north=false,south=true,up=true,west=false]": "minecraft:vine[vine_direction_bits=1]", + "minecraft:vine[east=false,north=false,south=true,up=false,west=true]": "minecraft:vine[vine_direction_bits=3]", + "minecraft:vine[east=false,north=false,south=true,up=false,west=false]": "minecraft:vine[vine_direction_bits=1]", + "minecraft:vine[east=false,north=false,south=false,up=true,west=true]": "minecraft:vine[vine_direction_bits=2]", + "minecraft:vine[east=false,north=false,south=false,up=true,west=false]": "minecraft:vine[vine_direction_bits=0]", + "minecraft:vine[east=false,north=false,south=false,up=false,west=true]": "minecraft:vine[vine_direction_bits=2]", + "minecraft:vine[east=false,north=false,south=false,up=false,west=false]": "minecraft:vine[vine_direction_bits=0]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=63]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=55]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=63]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=55]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=61]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=53]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=61]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=53]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=59]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=51]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=59]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=51]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=57]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=49]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=57]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=49]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=47]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=39]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=47]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=39]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=45]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=37]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=45]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=37]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=43]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=35]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=43]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=35]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=41]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=33]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=41]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=33]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=31]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=23]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=31]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=23]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=29]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=21]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=29]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=21]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=27]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=19]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=27]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=19]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=25]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=17]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=25]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=17]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=15]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=7]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=15]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=7]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=13]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=5]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=13]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=5]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=11]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=3]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=11]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=3]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=9]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=1]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=9]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=1]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=62]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=54]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=62]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=54]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=60]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=52]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=60]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=52]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=58]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=50]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=58]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=50]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=56]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=48]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=56]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=48]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=46]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=38]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=46]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=38]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=44]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=36]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=44]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=36]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=42]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=34]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=42]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=34]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=40]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=32]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=40]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=32]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=30]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=22]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=30]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=22]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=28]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=20]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=28]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=20]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=26]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=18]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=26]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=18]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=24]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=16]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=24]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=16]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=14]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=6]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=14]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=6]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=12]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=4]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=12]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=4]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=10]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=2]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=10]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=2]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=8]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=0]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=8]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=0]", + "minecraft:resin_clump[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=63]", + "minecraft:resin_clump[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=55]", + "minecraft:resin_clump[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=63]", + "minecraft:resin_clump[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=55]", + "minecraft:resin_clump[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=61]", + "minecraft:resin_clump[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=53]", + "minecraft:resin_clump[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=61]", + "minecraft:resin_clump[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=53]", + "minecraft:resin_clump[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=59]", + "minecraft:resin_clump[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=51]", + "minecraft:resin_clump[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=59]", + "minecraft:resin_clump[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=51]", + "minecraft:resin_clump[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=57]", + "minecraft:resin_clump[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=49]", + "minecraft:resin_clump[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=57]", + "minecraft:resin_clump[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=49]", + "minecraft:resin_clump[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=47]", + "minecraft:resin_clump[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=39]", + "minecraft:resin_clump[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=47]", + "minecraft:resin_clump[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=39]", + "minecraft:resin_clump[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=45]", + "minecraft:resin_clump[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=37]", + "minecraft:resin_clump[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=45]", + "minecraft:resin_clump[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=37]", + "minecraft:resin_clump[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=43]", + "minecraft:resin_clump[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=35]", + "minecraft:resin_clump[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=43]", + "minecraft:resin_clump[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=35]", + "minecraft:resin_clump[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=41]", + "minecraft:resin_clump[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=33]", + "minecraft:resin_clump[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=41]", + "minecraft:resin_clump[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=33]", + "minecraft:resin_clump[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=31]", + "minecraft:resin_clump[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=23]", + "minecraft:resin_clump[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=31]", + "minecraft:resin_clump[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=23]", + "minecraft:resin_clump[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=29]", + "minecraft:resin_clump[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=21]", + "minecraft:resin_clump[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=29]", + "minecraft:resin_clump[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=21]", + "minecraft:resin_clump[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=27]", + "minecraft:resin_clump[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=19]", + "minecraft:resin_clump[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=27]", + "minecraft:resin_clump[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=19]", + "minecraft:resin_clump[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=25]", + "minecraft:resin_clump[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=17]", + "minecraft:resin_clump[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=25]", + "minecraft:resin_clump[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=17]", + "minecraft:resin_clump[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=15]", + "minecraft:resin_clump[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=7]", + "minecraft:resin_clump[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=15]", + "minecraft:resin_clump[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=7]", + "minecraft:resin_clump[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=13]", + "minecraft:resin_clump[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=5]", + "minecraft:resin_clump[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=13]", + "minecraft:resin_clump[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=5]", + "minecraft:resin_clump[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=11]", + "minecraft:resin_clump[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=3]", + "minecraft:resin_clump[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=11]", + "minecraft:resin_clump[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=3]", + "minecraft:resin_clump[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=9]", + "minecraft:resin_clump[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=1]", + "minecraft:resin_clump[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=9]", + "minecraft:resin_clump[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=1]", + "minecraft:resin_clump[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=62]", + "minecraft:resin_clump[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=54]", + "minecraft:resin_clump[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=62]", + "minecraft:resin_clump[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=54]", + "minecraft:resin_clump[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=60]", + "minecraft:resin_clump[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=52]", + "minecraft:resin_clump[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=60]", + "minecraft:resin_clump[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=52]", + "minecraft:resin_clump[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=58]", + "minecraft:resin_clump[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=50]", + "minecraft:resin_clump[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=58]", + "minecraft:resin_clump[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=50]", + "minecraft:resin_clump[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=56]", + "minecraft:resin_clump[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=48]", + "minecraft:resin_clump[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=56]", + "minecraft:resin_clump[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=48]", + "minecraft:resin_clump[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=46]", + "minecraft:resin_clump[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=38]", + "minecraft:resin_clump[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=46]", + "minecraft:resin_clump[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=38]", + "minecraft:resin_clump[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=44]", + "minecraft:resin_clump[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=36]", + "minecraft:resin_clump[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=44]", + "minecraft:resin_clump[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=36]", + "minecraft:resin_clump[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=42]", + "minecraft:resin_clump[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=34]", + "minecraft:resin_clump[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=42]", + "minecraft:resin_clump[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=34]", + "minecraft:resin_clump[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=40]", + "minecraft:resin_clump[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=32]", + "minecraft:resin_clump[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=40]", + "minecraft:resin_clump[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=32]", + "minecraft:resin_clump[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=30]", + "minecraft:resin_clump[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=22]", + "minecraft:resin_clump[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=30]", + "minecraft:resin_clump[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=22]", + "minecraft:resin_clump[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=28]", + "minecraft:resin_clump[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=20]", + "minecraft:resin_clump[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=28]", + "minecraft:resin_clump[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=20]", + "minecraft:resin_clump[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=26]", + "minecraft:resin_clump[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=18]", + "minecraft:resin_clump[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=26]", + "minecraft:resin_clump[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=18]", + "minecraft:resin_clump[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=24]", + "minecraft:resin_clump[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=16]", + "minecraft:resin_clump[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=24]", + "minecraft:resin_clump[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=16]", + "minecraft:resin_clump[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=14]", + "minecraft:resin_clump[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=6]", + "minecraft:resin_clump[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=14]", + "minecraft:resin_clump[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=6]", + "minecraft:resin_clump[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=12]", + "minecraft:resin_clump[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=4]", + "minecraft:resin_clump[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=12]", + "minecraft:resin_clump[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=4]", + "minecraft:resin_clump[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=10]", + "minecraft:resin_clump[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=2]", + "minecraft:resin_clump[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=10]", + "minecraft:resin_clump[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=2]", + "minecraft:resin_clump[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:resin_clump[multi_face_direction_bits=8]", + "minecraft:resin_clump[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:resin_clump[multi_face_direction_bits=0]", + "minecraft:resin_clump[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:resin_clump[multi_face_direction_bits=8]", + "minecraft:resin_clump[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:resin_clump[multi_face_direction_bits=0]", + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mycelium[snowy=true]": "minecraft:mycelium[]", + "minecraft:mycelium[snowy=false]": "minecraft:mycelium[]", + "minecraft:lily_pad[]": "minecraft:waterlily[]", + "minecraft:resin_block[]": "minecraft:resin_block[]", + "minecraft:resin_bricks[]": "minecraft:resin_bricks[]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:resin_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:resin_brick_slab[type=top,waterlogged=true]": "minecraft:resin_brick_slab[minecraft:vertical_half=top]", + "minecraft:resin_brick_slab[type=top,waterlogged=false]": "minecraft:resin_brick_slab[minecraft:vertical_half=top]", + "minecraft:resin_brick_slab[type=bottom,waterlogged=true]": "minecraft:resin_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:resin_brick_slab[type=bottom,waterlogged=false]": "minecraft:resin_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:resin_brick_slab[type=double,waterlogged=true]": "minecraft:resin_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:resin_brick_slab[type=double,waterlogged=false]": "minecraft:resin_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:resin_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:resin_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:chiseled_resin_bricks[]": "minecraft:chiseled_resin_bricks[]", + "minecraft:nether_bricks[]": "minecraft:nether_brick[]", + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_wart[age=0]": "minecraft:nether_wart[age=0]", + "minecraft:nether_wart[age=1]": "minecraft:nether_wart[age=1]", + "minecraft:nether_wart[age=2]": "minecraft:nether_wart[age=2]", + "minecraft:nether_wart[age=3]": "minecraft:nether_wart[age=3]", + "minecraft:enchanting_table[]": "minecraft:enchanting_table[]", + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=true,brewing_stand_slot_b_bit=true,brewing_stand_slot_c_bit=true]", + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=true,brewing_stand_slot_b_bit=true,brewing_stand_slot_c_bit=false]", + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=true,brewing_stand_slot_b_bit=false,brewing_stand_slot_c_bit=true]", + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=true,brewing_stand_slot_b_bit=false,brewing_stand_slot_c_bit=false]", + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=false,brewing_stand_slot_b_bit=true,brewing_stand_slot_c_bit=true]", + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=false,brewing_stand_slot_b_bit=true,brewing_stand_slot_c_bit=false]", + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=false,brewing_stand_slot_b_bit=false,brewing_stand_slot_c_bit=true]", + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=false,brewing_stand_slot_b_bit=false,brewing_stand_slot_c_bit=false]", + "minecraft:cauldron[]": "minecraft:cauldron[cauldron_liquid=water,fill_level=0]", + "minecraft:water_cauldron[level=1]": "minecraft:cauldron[cauldron_liquid=water,fill_level=3]", + "minecraft:water_cauldron[level=2]": "minecraft:cauldron[cauldron_liquid=water,fill_level=4]", + "minecraft:water_cauldron[level=3]": "minecraft:cauldron[cauldron_liquid=water,fill_level=6]", + "minecraft:lava_cauldron[]": "minecraft:cauldron[cauldron_liquid=lava,fill_level=6]", + "minecraft:powder_snow_cauldron[level=1]": "minecraft:cauldron[cauldron_liquid=powder_snow,fill_level=3]", + "minecraft:powder_snow_cauldron[level=2]": "minecraft:cauldron[cauldron_liquid=powder_snow,fill_level=4]", + "minecraft:powder_snow_cauldron[level=3]": "minecraft:cauldron[cauldron_liquid=powder_snow,fill_level=6]", + "minecraft:end_portal[]": "minecraft:end_portal[]", + "minecraft:end_portal_frame[eye=true,facing=north]": "minecraft:end_portal_frame[end_portal_eye_bit=true,minecraft:cardinal_direction=north]", + "minecraft:end_portal_frame[eye=true,facing=south]": "minecraft:end_portal_frame[end_portal_eye_bit=true,minecraft:cardinal_direction=south]", + "minecraft:end_portal_frame[eye=true,facing=west]": "minecraft:end_portal_frame[end_portal_eye_bit=true,minecraft:cardinal_direction=west]", + "minecraft:end_portal_frame[eye=true,facing=east]": "minecraft:end_portal_frame[end_portal_eye_bit=true,minecraft:cardinal_direction=east]", + "minecraft:end_portal_frame[eye=false,facing=north]": "minecraft:end_portal_frame[end_portal_eye_bit=false,minecraft:cardinal_direction=north]", + "minecraft:end_portal_frame[eye=false,facing=south]": "minecraft:end_portal_frame[end_portal_eye_bit=false,minecraft:cardinal_direction=south]", + "minecraft:end_portal_frame[eye=false,facing=west]": "minecraft:end_portal_frame[end_portal_eye_bit=false,minecraft:cardinal_direction=west]", + "minecraft:end_portal_frame[eye=false,facing=east]": "minecraft:end_portal_frame[end_portal_eye_bit=false,minecraft:cardinal_direction=east]", + "minecraft:end_stone[]": "minecraft:end_stone[]", + "minecraft:dragon_egg[]": "minecraft:dragon_egg[]", + "minecraft:redstone_lamp[lit=true]": "minecraft:lit_redstone_lamp[]", + "minecraft:redstone_lamp[lit=false]": "minecraft:redstone_lamp[]", + "minecraft:cocoa[age=0,facing=north]": "minecraft:cocoa[age=0,direction=2]", + "minecraft:cocoa[age=0,facing=south]": "minecraft:cocoa[age=0,direction=0]", + "minecraft:cocoa[age=0,facing=west]": "minecraft:cocoa[age=0,direction=1]", + "minecraft:cocoa[age=0,facing=east]": "minecraft:cocoa[age=0,direction=3]", + "minecraft:cocoa[age=1,facing=north]": "minecraft:cocoa[age=1,direction=2]", + "minecraft:cocoa[age=1,facing=south]": "minecraft:cocoa[age=1,direction=0]", + "minecraft:cocoa[age=1,facing=west]": "minecraft:cocoa[age=1,direction=1]", + "minecraft:cocoa[age=1,facing=east]": "minecraft:cocoa[age=1,direction=3]", + "minecraft:cocoa[age=2,facing=north]": "minecraft:cocoa[age=2,direction=2]", + "minecraft:cocoa[age=2,facing=south]": "minecraft:cocoa[age=2,direction=0]", + "minecraft:cocoa[age=2,facing=west]": "minecraft:cocoa[age=2,direction=1]", + "minecraft:cocoa[age=2,facing=east]": "minecraft:cocoa[age=2,direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:emerald_ore[]": "minecraft:emerald_ore[]", + "minecraft:deepslate_emerald_ore[]": "minecraft:deepslate_emerald_ore[]", + "minecraft:ender_chest[facing=north,waterlogged=true]": "minecraft:ender_chest[minecraft:cardinal_direction=north]", + "minecraft:ender_chest[facing=north,waterlogged=false]": "minecraft:ender_chest[minecraft:cardinal_direction=north]", + "minecraft:ender_chest[facing=south,waterlogged=true]": "minecraft:ender_chest[minecraft:cardinal_direction=south]", + "minecraft:ender_chest[facing=south,waterlogged=false]": "minecraft:ender_chest[minecraft:cardinal_direction=south]", + "minecraft:ender_chest[facing=west,waterlogged=true]": "minecraft:ender_chest[minecraft:cardinal_direction=west]", + "minecraft:ender_chest[facing=west,waterlogged=false]": "minecraft:ender_chest[minecraft:cardinal_direction=west]", + "minecraft:ender_chest[facing=east,waterlogged=true]": "minecraft:ender_chest[minecraft:cardinal_direction=east]", + "minecraft:ender_chest[facing=east,waterlogged=false]": "minecraft:ender_chest[minecraft:cardinal_direction=east]", + "minecraft:tripwire_hook[attached=true,facing=north,powered=true]": "minecraft:tripwire_hook[attached_bit=true,direction=2,powered_bit=true]", + "minecraft:tripwire_hook[attached=true,facing=north,powered=false]": "minecraft:tripwire_hook[attached_bit=true,direction=2,powered_bit=false]", + "minecraft:tripwire_hook[attached=true,facing=south,powered=true]": "minecraft:tripwire_hook[attached_bit=true,direction=0,powered_bit=true]", + "minecraft:tripwire_hook[attached=true,facing=south,powered=false]": "minecraft:tripwire_hook[attached_bit=true,direction=0,powered_bit=false]", + "minecraft:tripwire_hook[attached=true,facing=west,powered=true]": "minecraft:tripwire_hook[attached_bit=true,direction=1,powered_bit=true]", + "minecraft:tripwire_hook[attached=true,facing=west,powered=false]": "minecraft:tripwire_hook[attached_bit=true,direction=1,powered_bit=false]", + "minecraft:tripwire_hook[attached=true,facing=east,powered=true]": "minecraft:tripwire_hook[attached_bit=true,direction=3,powered_bit=true]", + "minecraft:tripwire_hook[attached=true,facing=east,powered=false]": "minecraft:tripwire_hook[attached_bit=true,direction=3,powered_bit=false]", + "minecraft:tripwire_hook[attached=false,facing=north,powered=true]": "minecraft:tripwire_hook[attached_bit=false,direction=2,powered_bit=true]", + "minecraft:tripwire_hook[attached=false,facing=north,powered=false]": "minecraft:tripwire_hook[attached_bit=false,direction=2,powered_bit=false]", + "minecraft:tripwire_hook[attached=false,facing=south,powered=true]": "minecraft:tripwire_hook[attached_bit=false,direction=0,powered_bit=true]", + "minecraft:tripwire_hook[attached=false,facing=south,powered=false]": "minecraft:tripwire_hook[attached_bit=false,direction=0,powered_bit=false]", + "minecraft:tripwire_hook[attached=false,facing=west,powered=true]": "minecraft:tripwire_hook[attached_bit=false,direction=1,powered_bit=true]", + "minecraft:tripwire_hook[attached=false,facing=west,powered=false]": "minecraft:tripwire_hook[attached_bit=false,direction=1,powered_bit=false]", + "minecraft:tripwire_hook[attached=false,facing=east,powered=true]": "minecraft:tripwire_hook[attached_bit=false,direction=3,powered_bit=true]", + "minecraft:tripwire_hook[attached=false,facing=east,powered=false]": "minecraft:tripwire_hook[attached_bit=false,direction=3,powered_bit=false]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:emerald_block[]": "minecraft:emerald_block[]", + "minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:command_block[conditional=true,facing=north]": "minecraft:command_block[conditional_bit=true,facing_direction=2]", + "minecraft:command_block[conditional=true,facing=east]": "minecraft:command_block[conditional_bit=true,facing_direction=5]", + "minecraft:command_block[conditional=true,facing=south]": "minecraft:command_block[conditional_bit=true,facing_direction=3]", + "minecraft:command_block[conditional=true,facing=west]": "minecraft:command_block[conditional_bit=true,facing_direction=4]", + "minecraft:command_block[conditional=true,facing=up]": "minecraft:command_block[conditional_bit=true,facing_direction=1]", + "minecraft:command_block[conditional=true,facing=down]": "minecraft:command_block[conditional_bit=true,facing_direction=0]", + "minecraft:command_block[conditional=false,facing=north]": "minecraft:command_block[conditional_bit=false,facing_direction=2]", + "minecraft:command_block[conditional=false,facing=east]": "minecraft:command_block[conditional_bit=false,facing_direction=5]", + "minecraft:command_block[conditional=false,facing=south]": "minecraft:command_block[conditional_bit=false,facing_direction=3]", + "minecraft:command_block[conditional=false,facing=west]": "minecraft:command_block[conditional_bit=false,facing_direction=4]", + "minecraft:command_block[conditional=false,facing=up]": "minecraft:command_block[conditional_bit=false,facing_direction=1]", + "minecraft:command_block[conditional=false,facing=down]": "minecraft:command_block[conditional_bit=false,facing_direction=0]", + "minecraft:beacon[]": "minecraft:beacon[]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_cobblestone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:flower_pot[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_torchflower[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_oak_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_spruce_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_birch_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_jungle_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_acacia_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_cherry_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_dark_oak_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_pale_oak_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_mangrove_propagule[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_fern[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_dandelion[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_poppy[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_blue_orchid[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_allium[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_azure_bluet[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_red_tulip[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_orange_tulip[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_white_tulip[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_pink_tulip[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_oxeye_daisy[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_cornflower[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_lily_of_the_valley[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_wither_rose[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_red_mushroom[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_brown_mushroom[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_dead_bush[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_cactus[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:carrots[age=0]": "minecraft:carrots[growth=0]", + "minecraft:carrots[age=1]": "minecraft:carrots[growth=1]", + "minecraft:carrots[age=2]": "minecraft:carrots[growth=2]", + "minecraft:carrots[age=3]": "minecraft:carrots[growth=3]", + "minecraft:carrots[age=4]": "minecraft:carrots[growth=4]", + "minecraft:carrots[age=5]": "minecraft:carrots[growth=5]", + "minecraft:carrots[age=6]": "minecraft:carrots[growth=6]", + "minecraft:carrots[age=7]": "minecraft:carrots[growth=7]", + "minecraft:potatoes[age=0]": "minecraft:potatoes[growth=0]", + "minecraft:potatoes[age=1]": "minecraft:potatoes[growth=1]", + "minecraft:potatoes[age=2]": "minecraft:potatoes[growth=2]", + "minecraft:potatoes[age=3]": "minecraft:potatoes[growth=3]", + "minecraft:potatoes[age=4]": "minecraft:potatoes[growth=4]", + "minecraft:potatoes[age=5]": "minecraft:potatoes[growth=5]", + "minecraft:potatoes[age=6]": "minecraft:potatoes[growth=6]", + "minecraft:potatoes[age=7]": "minecraft:potatoes[growth=7]", + "minecraft:oak_button[face=floor,facing=north,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=north,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=south,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=south,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=west,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=west,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=east,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=east,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:oak_button[face=wall,facing=north,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:oak_button[face=wall,facing=north,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:oak_button[face=wall,facing=south,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:oak_button[face=wall,facing=south,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:oak_button[face=wall,facing=west,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:oak_button[face=wall,facing=west,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:oak_button[face=wall,facing=east,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:oak_button[face=wall,facing=east,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:oak_button[face=ceiling,facing=north,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=north,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=south,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=south,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=west,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=west,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=east,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=east,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:spruce_button[face=floor,facing=north,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=north,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=south,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=south,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=west,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=west,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=east,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=east,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:spruce_button[face=wall,facing=north,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:spruce_button[face=wall,facing=north,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:spruce_button[face=wall,facing=south,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:spruce_button[face=wall,facing=south,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:spruce_button[face=wall,facing=west,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:spruce_button[face=wall,facing=west,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:spruce_button[face=wall,facing=east,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:spruce_button[face=wall,facing=east,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:spruce_button[face=ceiling,facing=north,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=north,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=south,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=south,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=west,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=west,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=east,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=east,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:birch_button[face=floor,facing=north,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=north,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=south,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=south,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=west,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=west,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=east,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=east,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:birch_button[face=wall,facing=north,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:birch_button[face=wall,facing=north,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:birch_button[face=wall,facing=south,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:birch_button[face=wall,facing=south,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:birch_button[face=wall,facing=west,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:birch_button[face=wall,facing=west,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:birch_button[face=wall,facing=east,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:birch_button[face=wall,facing=east,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:birch_button[face=ceiling,facing=north,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=north,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=south,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=south,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=west,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=west,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=east,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=east,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:jungle_button[face=floor,facing=north,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=north,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=south,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=south,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=west,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=west,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=east,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=east,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:jungle_button[face=wall,facing=north,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:jungle_button[face=wall,facing=north,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:jungle_button[face=wall,facing=south,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:jungle_button[face=wall,facing=south,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:jungle_button[face=wall,facing=west,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:jungle_button[face=wall,facing=west,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:jungle_button[face=wall,facing=east,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:jungle_button[face=wall,facing=east,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:jungle_button[face=ceiling,facing=north,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=north,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=south,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=south,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=west,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=west,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=east,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=east,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:acacia_button[face=floor,facing=north,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=north,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=south,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=south,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=west,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=west,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=east,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=east,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:acacia_button[face=wall,facing=north,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:acacia_button[face=wall,facing=north,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:acacia_button[face=wall,facing=south,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:acacia_button[face=wall,facing=south,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:acacia_button[face=wall,facing=west,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:acacia_button[face=wall,facing=west,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:acacia_button[face=wall,facing=east,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:acacia_button[face=wall,facing=east,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:acacia_button[face=ceiling,facing=north,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=north,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=south,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=south,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=west,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=west,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=east,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=east,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:cherry_button[face=floor,facing=north,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=north,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=south,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=south,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=west,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=west,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=east,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=east,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:cherry_button[face=wall,facing=north,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:cherry_button[face=wall,facing=north,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:cherry_button[face=wall,facing=south,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:cherry_button[face=wall,facing=south,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:cherry_button[face=wall,facing=west,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:cherry_button[face=wall,facing=west,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:cherry_button[face=wall,facing=east,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:cherry_button[face=wall,facing=east,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:cherry_button[face=ceiling,facing=north,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=north,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=south,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=south,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=west,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=west,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=east,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=east,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:dark_oak_button[face=floor,facing=north,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=north,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=south,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=south,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=west,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=west,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=east,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=east,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:dark_oak_button[face=wall,facing=north,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:dark_oak_button[face=wall,facing=north,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:dark_oak_button[face=wall,facing=south,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:dark_oak_button[face=wall,facing=south,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:dark_oak_button[face=wall,facing=west,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:dark_oak_button[face=wall,facing=west,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:dark_oak_button[face=wall,facing=east,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:dark_oak_button[face=wall,facing=east,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:dark_oak_button[face=ceiling,facing=north,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=north,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=south,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=south,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=west,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=west,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=east,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=east,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:pale_oak_button[face=floor,facing=north,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:pale_oak_button[face=floor,facing=north,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:pale_oak_button[face=floor,facing=south,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:pale_oak_button[face=floor,facing=south,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:pale_oak_button[face=floor,facing=west,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:pale_oak_button[face=floor,facing=west,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:pale_oak_button[face=floor,facing=east,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:pale_oak_button[face=floor,facing=east,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:pale_oak_button[face=wall,facing=north,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:pale_oak_button[face=wall,facing=north,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:pale_oak_button[face=wall,facing=south,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:pale_oak_button[face=wall,facing=south,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:pale_oak_button[face=wall,facing=west,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:pale_oak_button[face=wall,facing=west,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:pale_oak_button[face=wall,facing=east,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:pale_oak_button[face=wall,facing=east,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:pale_oak_button[face=ceiling,facing=north,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:pale_oak_button[face=ceiling,facing=north,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:pale_oak_button[face=ceiling,facing=south,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:pale_oak_button[face=ceiling,facing=south,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:pale_oak_button[face=ceiling,facing=west,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:pale_oak_button[face=ceiling,facing=west,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:pale_oak_button[face=ceiling,facing=east,powered=true]": "minecraft:pale_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:pale_oak_button[face=ceiling,facing=east,powered=false]": "minecraft:pale_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:mangrove_button[face=floor,facing=north,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=north,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=south,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=south,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=west,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=west,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=east,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=east,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:mangrove_button[face=wall,facing=north,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:mangrove_button[face=wall,facing=north,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:mangrove_button[face=wall,facing=south,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:mangrove_button[face=wall,facing=south,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:mangrove_button[face=wall,facing=west,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:mangrove_button[face=wall,facing=west,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:mangrove_button[face=wall,facing=east,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:mangrove_button[face=wall,facing=east,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:mangrove_button[face=ceiling,facing=north,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=north,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=south,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=south,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=west,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=west,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=east,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=east,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:bamboo_button[face=floor,facing=north,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=north,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=south,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=south,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=west,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=west,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=east,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=east,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:bamboo_button[face=wall,facing=north,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:bamboo_button[face=wall,facing=north,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:bamboo_button[face=wall,facing=south,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:bamboo_button[face=wall,facing=south,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:bamboo_button[face=wall,facing=west,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:bamboo_button[face=wall,facing=west,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:bamboo_button[face=wall,facing=east,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:bamboo_button[face=wall,facing=east,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:bamboo_button[face=ceiling,facing=north,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=north,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=south,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=south,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=west,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=west,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=east,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=east,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:skeleton_skull[powered=true,rotation=0]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=1]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=2]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=3]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=4]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=5]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=6]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=7]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=8]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=9]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=10]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=11]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=12]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=13]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=14]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=15]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=0]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=1]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=2]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=3]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=4]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=5]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=6]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=7]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=8]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=9]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=10]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=11]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=12]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=13]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=14]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=15]": "minecraft:skeleton_skull[facing_direction=1]", + "minecraft:skeleton_wall_skull[facing=north,powered=true]": "minecraft:skeleton_skull[facing_direction=2]", + "minecraft:skeleton_wall_skull[facing=north,powered=false]": "minecraft:skeleton_skull[facing_direction=2]", + "minecraft:skeleton_wall_skull[facing=south,powered=true]": "minecraft:skeleton_skull[facing_direction=3]", + "minecraft:skeleton_wall_skull[facing=south,powered=false]": "minecraft:skeleton_skull[facing_direction=3]", + "minecraft:skeleton_wall_skull[facing=west,powered=true]": "minecraft:skeleton_skull[facing_direction=4]", + "minecraft:skeleton_wall_skull[facing=west,powered=false]": "minecraft:skeleton_skull[facing_direction=4]", + "minecraft:skeleton_wall_skull[facing=east,powered=true]": "minecraft:skeleton_skull[facing_direction=5]", + "minecraft:skeleton_wall_skull[facing=east,powered=false]": "minecraft:skeleton_skull[facing_direction=5]", + "minecraft:wither_skeleton_skull[powered=true,rotation=0]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=1]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=2]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=3]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=4]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=5]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=6]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=7]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=8]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=9]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=10]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=11]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=12]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=13]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=14]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=15]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=0]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=1]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=2]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=3]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=4]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=5]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=6]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=7]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=8]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=9]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=10]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=11]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=12]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=13]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=14]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=15]": "minecraft:wither_skeleton_skull[facing_direction=1]", + "minecraft:wither_skeleton_wall_skull[facing=north,powered=true]": "minecraft:wither_skeleton_skull[facing_direction=2]", + "minecraft:wither_skeleton_wall_skull[facing=north,powered=false]": "minecraft:wither_skeleton_skull[facing_direction=2]", + "minecraft:wither_skeleton_wall_skull[facing=south,powered=true]": "minecraft:wither_skeleton_skull[facing_direction=3]", + "minecraft:wither_skeleton_wall_skull[facing=south,powered=false]": "minecraft:wither_skeleton_skull[facing_direction=3]", + "minecraft:wither_skeleton_wall_skull[facing=west,powered=true]": "minecraft:wither_skeleton_skull[facing_direction=4]", + "minecraft:wither_skeleton_wall_skull[facing=west,powered=false]": "minecraft:wither_skeleton_skull[facing_direction=4]", + "minecraft:wither_skeleton_wall_skull[facing=east,powered=true]": "minecraft:wither_skeleton_skull[facing_direction=5]", + "minecraft:wither_skeleton_wall_skull[facing=east,powered=false]": "minecraft:wither_skeleton_skull[facing_direction=5]", + "minecraft:zombie_head[powered=true,rotation=0]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=1]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=2]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=3]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=4]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=5]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=6]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=7]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=8]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=9]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=10]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=11]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=12]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=13]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=14]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=15]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=0]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=1]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=2]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=3]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=4]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=5]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=6]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=7]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=8]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=9]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=10]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=11]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=12]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=13]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=14]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=15]": "minecraft:zombie_head[facing_direction=1]", + "minecraft:zombie_wall_head[facing=north,powered=true]": "minecraft:zombie_head[facing_direction=2]", + "minecraft:zombie_wall_head[facing=north,powered=false]": "minecraft:zombie_head[facing_direction=2]", + "minecraft:zombie_wall_head[facing=south,powered=true]": "minecraft:zombie_head[facing_direction=3]", + "minecraft:zombie_wall_head[facing=south,powered=false]": "minecraft:zombie_head[facing_direction=3]", + "minecraft:zombie_wall_head[facing=west,powered=true]": "minecraft:zombie_head[facing_direction=4]", + "minecraft:zombie_wall_head[facing=west,powered=false]": "minecraft:zombie_head[facing_direction=4]", + "minecraft:zombie_wall_head[facing=east,powered=true]": "minecraft:zombie_head[facing_direction=5]", + "minecraft:zombie_wall_head[facing=east,powered=false]": "minecraft:zombie_head[facing_direction=5]", + "minecraft:player_head[powered=true,rotation=0]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=1]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=2]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=3]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=4]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=5]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=6]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=7]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=8]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=9]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=10]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=11]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=12]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=13]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=14]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=15]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=0]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=1]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=2]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=3]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=4]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=5]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=6]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=7]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=8]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=9]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=10]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=11]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=12]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=13]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=14]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=15]": "minecraft:player_head[facing_direction=1]", + "minecraft:player_wall_head[facing=north,powered=true]": "minecraft:player_head[facing_direction=2]", + "minecraft:player_wall_head[facing=north,powered=false]": "minecraft:player_head[facing_direction=2]", + "minecraft:player_wall_head[facing=south,powered=true]": "minecraft:player_head[facing_direction=3]", + "minecraft:player_wall_head[facing=south,powered=false]": "minecraft:player_head[facing_direction=3]", + "minecraft:player_wall_head[facing=west,powered=true]": "minecraft:player_head[facing_direction=4]", + "minecraft:player_wall_head[facing=west,powered=false]": "minecraft:player_head[facing_direction=4]", + "minecraft:player_wall_head[facing=east,powered=true]": "minecraft:player_head[facing_direction=5]", + "minecraft:player_wall_head[facing=east,powered=false]": "minecraft:player_head[facing_direction=5]", + "minecraft:creeper_head[powered=true,rotation=0]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=1]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=2]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=3]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=4]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=5]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=6]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=7]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=8]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=9]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=10]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=11]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=12]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=13]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=14]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=15]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=0]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=1]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=2]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=3]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=4]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=5]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=6]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=7]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=8]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=9]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=10]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=11]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=12]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=13]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=14]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=15]": "minecraft:creeper_head[facing_direction=1]", + "minecraft:creeper_wall_head[facing=north,powered=true]": "minecraft:creeper_head[facing_direction=2]", + "minecraft:creeper_wall_head[facing=north,powered=false]": "minecraft:creeper_head[facing_direction=2]", + "minecraft:creeper_wall_head[facing=south,powered=true]": "minecraft:creeper_head[facing_direction=3]", + "minecraft:creeper_wall_head[facing=south,powered=false]": "minecraft:creeper_head[facing_direction=3]", + "minecraft:creeper_wall_head[facing=west,powered=true]": "minecraft:creeper_head[facing_direction=4]", + "minecraft:creeper_wall_head[facing=west,powered=false]": "minecraft:creeper_head[facing_direction=4]", + "minecraft:creeper_wall_head[facing=east,powered=true]": "minecraft:creeper_head[facing_direction=5]", + "minecraft:creeper_wall_head[facing=east,powered=false]": "minecraft:creeper_head[facing_direction=5]", + "minecraft:dragon_head[powered=true,rotation=0]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=1]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=2]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=3]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=4]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=5]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=6]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=7]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=8]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=9]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=10]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=11]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=12]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=13]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=14]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=15]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=0]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=1]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=2]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=3]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=4]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=5]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=6]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=7]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=8]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=9]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=10]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=11]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=12]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=13]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=14]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=15]": "minecraft:dragon_head[facing_direction=1]", + "minecraft:dragon_wall_head[facing=north,powered=true]": "minecraft:dragon_head[facing_direction=2]", + "minecraft:dragon_wall_head[facing=north,powered=false]": "minecraft:dragon_head[facing_direction=2]", + "minecraft:dragon_wall_head[facing=south,powered=true]": "minecraft:dragon_head[facing_direction=3]", + "minecraft:dragon_wall_head[facing=south,powered=false]": "minecraft:dragon_head[facing_direction=3]", + "minecraft:dragon_wall_head[facing=west,powered=true]": "minecraft:dragon_head[facing_direction=4]", + "minecraft:dragon_wall_head[facing=west,powered=false]": "minecraft:dragon_head[facing_direction=4]", + "minecraft:dragon_wall_head[facing=east,powered=true]": "minecraft:dragon_head[facing_direction=5]", + "minecraft:dragon_wall_head[facing=east,powered=false]": "minecraft:dragon_head[facing_direction=5]", + "minecraft:piglin_head[powered=true,rotation=0]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=1]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=2]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=3]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=4]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=5]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=6]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=7]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=8]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=9]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=10]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=11]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=12]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=13]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=14]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=15]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=0]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=1]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=2]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=3]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=4]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=5]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=6]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=7]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=8]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=9]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=10]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=11]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=12]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=13]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=14]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=15]": "minecraft:piglin_head[facing_direction=1]", + "minecraft:piglin_wall_head[facing=north,powered=true]": "minecraft:piglin_head[facing_direction=2]", + "minecraft:piglin_wall_head[facing=north,powered=false]": "minecraft:piglin_head[facing_direction=2]", + "minecraft:piglin_wall_head[facing=south,powered=true]": "minecraft:piglin_head[facing_direction=3]", + "minecraft:piglin_wall_head[facing=south,powered=false]": "minecraft:piglin_head[facing_direction=3]", + "minecraft:piglin_wall_head[facing=west,powered=true]": "minecraft:piglin_head[facing_direction=4]", + "minecraft:piglin_wall_head[facing=west,powered=false]": "minecraft:piglin_head[facing_direction=4]", + "minecraft:piglin_wall_head[facing=east,powered=true]": "minecraft:piglin_head[facing_direction=5]", + "minecraft:piglin_wall_head[facing=east,powered=false]": "minecraft:piglin_head[facing_direction=5]", + "minecraft:anvil[facing=north]": "minecraft:anvil[minecraft:cardinal_direction=north]", + "minecraft:anvil[facing=south]": "minecraft:anvil[minecraft:cardinal_direction=south]", + "minecraft:anvil[facing=west]": "minecraft:anvil[minecraft:cardinal_direction=west]", + "minecraft:anvil[facing=east]": "minecraft:anvil[minecraft:cardinal_direction=east]", + "minecraft:chipped_anvil[facing=north]": "minecraft:chipped_anvil[minecraft:cardinal_direction=north]", + "minecraft:chipped_anvil[facing=south]": "minecraft:chipped_anvil[minecraft:cardinal_direction=south]", + "minecraft:chipped_anvil[facing=west]": "minecraft:chipped_anvil[minecraft:cardinal_direction=west]", + "minecraft:chipped_anvil[facing=east]": "minecraft:chipped_anvil[minecraft:cardinal_direction=east]", + "minecraft:damaged_anvil[facing=north]": "minecraft:damaged_anvil[minecraft:cardinal_direction=north]", + "minecraft:damaged_anvil[facing=south]": "minecraft:damaged_anvil[minecraft:cardinal_direction=south]", + "minecraft:damaged_anvil[facing=west]": "minecraft:damaged_anvil[minecraft:cardinal_direction=west]", + "minecraft:damaged_anvil[facing=east]": "minecraft:damaged_anvil[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=north,type=single,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=single,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=left,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=left,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=right,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=right,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=south,type=single,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=single,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=left,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=left,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=right,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=right,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=west,type=single,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=single,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=left,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=left,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=right,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=right,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=east,type=single,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=single,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=left,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=left,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=right,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=right,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:light_weighted_pressure_plate[power=0]": "minecraft:light_weighted_pressure_plate[redstone_signal=0]", + "minecraft:light_weighted_pressure_plate[power=1]": "minecraft:light_weighted_pressure_plate[redstone_signal=1]", + "minecraft:light_weighted_pressure_plate[power=2]": "minecraft:light_weighted_pressure_plate[redstone_signal=2]", + "minecraft:light_weighted_pressure_plate[power=3]": "minecraft:light_weighted_pressure_plate[redstone_signal=3]", + "minecraft:light_weighted_pressure_plate[power=4]": "minecraft:light_weighted_pressure_plate[redstone_signal=4]", + "minecraft:light_weighted_pressure_plate[power=5]": "minecraft:light_weighted_pressure_plate[redstone_signal=5]", + "minecraft:light_weighted_pressure_plate[power=6]": "minecraft:light_weighted_pressure_plate[redstone_signal=6]", + "minecraft:light_weighted_pressure_plate[power=7]": "minecraft:light_weighted_pressure_plate[redstone_signal=7]", + "minecraft:light_weighted_pressure_plate[power=8]": "minecraft:light_weighted_pressure_plate[redstone_signal=8]", + "minecraft:light_weighted_pressure_plate[power=9]": "minecraft:light_weighted_pressure_plate[redstone_signal=9]", + "minecraft:light_weighted_pressure_plate[power=10]": "minecraft:light_weighted_pressure_plate[redstone_signal=10]", + "minecraft:light_weighted_pressure_plate[power=11]": "minecraft:light_weighted_pressure_plate[redstone_signal=11]", + "minecraft:light_weighted_pressure_plate[power=12]": "minecraft:light_weighted_pressure_plate[redstone_signal=12]", + "minecraft:light_weighted_pressure_plate[power=13]": "minecraft:light_weighted_pressure_plate[redstone_signal=13]", + "minecraft:light_weighted_pressure_plate[power=14]": "minecraft:light_weighted_pressure_plate[redstone_signal=14]", + "minecraft:light_weighted_pressure_plate[power=15]": "minecraft:light_weighted_pressure_plate[redstone_signal=15]", + "minecraft:heavy_weighted_pressure_plate[power=0]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=0]", + "minecraft:heavy_weighted_pressure_plate[power=1]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=1]", + "minecraft:heavy_weighted_pressure_plate[power=2]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=2]", + "minecraft:heavy_weighted_pressure_plate[power=3]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=3]", + "minecraft:heavy_weighted_pressure_plate[power=4]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=4]", + "minecraft:heavy_weighted_pressure_plate[power=5]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=5]", + "minecraft:heavy_weighted_pressure_plate[power=6]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=6]", + "minecraft:heavy_weighted_pressure_plate[power=7]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=7]", + "minecraft:heavy_weighted_pressure_plate[power=8]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=8]", + "minecraft:heavy_weighted_pressure_plate[power=9]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=9]", + "minecraft:heavy_weighted_pressure_plate[power=10]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=10]", + "minecraft:heavy_weighted_pressure_plate[power=11]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=11]", + "minecraft:heavy_weighted_pressure_plate[power=12]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=12]", + "minecraft:heavy_weighted_pressure_plate[power=13]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=13]", + "minecraft:heavy_weighted_pressure_plate[power=14]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=14]", + "minecraft:heavy_weighted_pressure_plate[power=15]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=15]", + "minecraft:comparator[facing=north,mode=compare,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=north,output_lit_bit=true,output_subtract_bit=false]", + "minecraft:comparator[facing=north,mode=compare,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=north,output_lit_bit=false,output_subtract_bit=false]", + "minecraft:comparator[facing=north,mode=subtract,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=north,output_lit_bit=true,output_subtract_bit=true]", + "minecraft:comparator[facing=north,mode=subtract,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=north,output_lit_bit=false,output_subtract_bit=true]", + "minecraft:comparator[facing=south,mode=compare,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=south,output_lit_bit=true,output_subtract_bit=false]", + "minecraft:comparator[facing=south,mode=compare,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=south,output_lit_bit=false,output_subtract_bit=false]", + "minecraft:comparator[facing=south,mode=subtract,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=south,output_lit_bit=true,output_subtract_bit=true]", + "minecraft:comparator[facing=south,mode=subtract,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=south,output_lit_bit=false,output_subtract_bit=true]", + "minecraft:comparator[facing=west,mode=compare,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=west,output_lit_bit=true,output_subtract_bit=false]", + "minecraft:comparator[facing=west,mode=compare,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=west,output_lit_bit=false,output_subtract_bit=false]", + "minecraft:comparator[facing=west,mode=subtract,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=west,output_lit_bit=true,output_subtract_bit=true]", + "minecraft:comparator[facing=west,mode=subtract,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=west,output_lit_bit=false,output_subtract_bit=true]", + "minecraft:comparator[facing=east,mode=compare,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=east,output_lit_bit=true,output_subtract_bit=false]", + "minecraft:comparator[facing=east,mode=compare,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=east,output_lit_bit=false,output_subtract_bit=false]", + "minecraft:comparator[facing=east,mode=subtract,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=east,output_lit_bit=true,output_subtract_bit=true]", + "minecraft:comparator[facing=east,mode=subtract,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=east,output_lit_bit=false,output_subtract_bit=true]", + "minecraft:daylight_detector[inverted=true,power=0]": "minecraft:daylight_detector_inverted[redstone_signal=0]", + "minecraft:daylight_detector[inverted=true,power=1]": "minecraft:daylight_detector_inverted[redstone_signal=1]", + "minecraft:daylight_detector[inverted=true,power=2]": "minecraft:daylight_detector_inverted[redstone_signal=2]", + "minecraft:daylight_detector[inverted=true,power=3]": "minecraft:daylight_detector_inverted[redstone_signal=3]", + "minecraft:daylight_detector[inverted=true,power=4]": "minecraft:daylight_detector_inverted[redstone_signal=4]", + "minecraft:daylight_detector[inverted=true,power=5]": "minecraft:daylight_detector_inverted[redstone_signal=5]", + "minecraft:daylight_detector[inverted=true,power=6]": "minecraft:daylight_detector_inverted[redstone_signal=6]", + "minecraft:daylight_detector[inverted=true,power=7]": "minecraft:daylight_detector_inverted[redstone_signal=7]", + "minecraft:daylight_detector[inverted=true,power=8]": "minecraft:daylight_detector_inverted[redstone_signal=8]", + "minecraft:daylight_detector[inverted=true,power=9]": "minecraft:daylight_detector_inverted[redstone_signal=9]", + "minecraft:daylight_detector[inverted=true,power=10]": "minecraft:daylight_detector_inverted[redstone_signal=10]", + "minecraft:daylight_detector[inverted=true,power=11]": "minecraft:daylight_detector_inverted[redstone_signal=11]", + "minecraft:daylight_detector[inverted=true,power=12]": "minecraft:daylight_detector_inverted[redstone_signal=12]", + "minecraft:daylight_detector[inverted=true,power=13]": "minecraft:daylight_detector_inverted[redstone_signal=13]", + "minecraft:daylight_detector[inverted=true,power=14]": "minecraft:daylight_detector_inverted[redstone_signal=14]", + "minecraft:daylight_detector[inverted=true,power=15]": "minecraft:daylight_detector_inverted[redstone_signal=15]", + "minecraft:daylight_detector[inverted=false,power=0]": "minecraft:daylight_detector[redstone_signal=0]", + "minecraft:daylight_detector[inverted=false,power=1]": "minecraft:daylight_detector[redstone_signal=1]", + "minecraft:daylight_detector[inverted=false,power=2]": "minecraft:daylight_detector[redstone_signal=2]", + "minecraft:daylight_detector[inverted=false,power=3]": "minecraft:daylight_detector[redstone_signal=3]", + "minecraft:daylight_detector[inverted=false,power=4]": "minecraft:daylight_detector[redstone_signal=4]", + "minecraft:daylight_detector[inverted=false,power=5]": "minecraft:daylight_detector[redstone_signal=5]", + "minecraft:daylight_detector[inverted=false,power=6]": "minecraft:daylight_detector[redstone_signal=6]", + "minecraft:daylight_detector[inverted=false,power=7]": "minecraft:daylight_detector[redstone_signal=7]", + "minecraft:daylight_detector[inverted=false,power=8]": "minecraft:daylight_detector[redstone_signal=8]", + "minecraft:daylight_detector[inverted=false,power=9]": "minecraft:daylight_detector[redstone_signal=9]", + "minecraft:daylight_detector[inverted=false,power=10]": "minecraft:daylight_detector[redstone_signal=10]", + "minecraft:daylight_detector[inverted=false,power=11]": "minecraft:daylight_detector[redstone_signal=11]", + "minecraft:daylight_detector[inverted=false,power=12]": "minecraft:daylight_detector[redstone_signal=12]", + "minecraft:daylight_detector[inverted=false,power=13]": "minecraft:daylight_detector[redstone_signal=13]", + "minecraft:daylight_detector[inverted=false,power=14]": "minecraft:daylight_detector[redstone_signal=14]", + "minecraft:daylight_detector[inverted=false,power=15]": "minecraft:daylight_detector[redstone_signal=15]", + "minecraft:redstone_block[]": "minecraft:redstone_block[]", + "minecraft:nether_quartz_ore[]": "minecraft:quartz_ore[]", + "minecraft:hopper[enabled=true,facing=down]": "minecraft:hopper[facing_direction=0,toggle_bit=true]", + "minecraft:hopper[enabled=true,facing=north]": "minecraft:hopper[facing_direction=2,toggle_bit=true]", + "minecraft:hopper[enabled=true,facing=south]": "minecraft:hopper[facing_direction=3,toggle_bit=true]", + "minecraft:hopper[enabled=true,facing=west]": "minecraft:hopper[facing_direction=4,toggle_bit=true]", + "minecraft:hopper[enabled=true,facing=east]": "minecraft:hopper[facing_direction=5,toggle_bit=true]", + "minecraft:hopper[enabled=false,facing=down]": "minecraft:hopper[facing_direction=0,toggle_bit=false]", + "minecraft:hopper[enabled=false,facing=north]": "minecraft:hopper[facing_direction=2,toggle_bit=false]", + "minecraft:hopper[enabled=false,facing=south]": "minecraft:hopper[facing_direction=3,toggle_bit=false]", + "minecraft:hopper[enabled=false,facing=west]": "minecraft:hopper[facing_direction=4,toggle_bit=false]", + "minecraft:hopper[enabled=false,facing=east]": "minecraft:hopper[facing_direction=5,toggle_bit=false]", + "minecraft:quartz_block[]": "minecraft:quartz_block[pillar_axis=y]", + "minecraft:chiseled_quartz_block[]": "minecraft:chiseled_quartz_block[pillar_axis=y]", + "minecraft:quartz_pillar[axis=x]": "minecraft:quartz_pillar[pillar_axis=x]", + "minecraft:quartz_pillar[axis=y]": "minecraft:quartz_pillar[pillar_axis=y]", + "minecraft:quartz_pillar[axis=z]": "minecraft:quartz_pillar[pillar_axis=z]", + "minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:activator_rail[powered=true,shape=north_south,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:activator_rail[powered=true,shape=north_south,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:activator_rail[powered=true,shape=east_west,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:activator_rail[powered=true,shape=east_west,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:activator_rail[powered=false,shape=north_south,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:activator_rail[powered=false,shape=north_south,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:activator_rail[powered=false,shape=east_west,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:activator_rail[powered=false,shape=east_west,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:dropper[facing=north,triggered=true]": "minecraft:dropper[facing_direction=2,triggered_bit=true]", + "minecraft:dropper[facing=north,triggered=false]": "minecraft:dropper[facing_direction=2,triggered_bit=false]", + "minecraft:dropper[facing=east,triggered=true]": "minecraft:dropper[facing_direction=5,triggered_bit=true]", + "minecraft:dropper[facing=east,triggered=false]": "minecraft:dropper[facing_direction=5,triggered_bit=false]", + "minecraft:dropper[facing=south,triggered=true]": "minecraft:dropper[facing_direction=3,triggered_bit=true]", + "minecraft:dropper[facing=south,triggered=false]": "minecraft:dropper[facing_direction=3,triggered_bit=false]", + "minecraft:dropper[facing=west,triggered=true]": "minecraft:dropper[facing_direction=4,triggered_bit=true]", + "minecraft:dropper[facing=west,triggered=false]": "minecraft:dropper[facing_direction=4,triggered_bit=false]", + "minecraft:dropper[facing=up,triggered=true]": "minecraft:dropper[facing_direction=1,triggered_bit=true]", + "minecraft:dropper[facing=up,triggered=false]": "minecraft:dropper[facing_direction=1,triggered_bit=false]", + "minecraft:dropper[facing=down,triggered=true]": "minecraft:dropper[facing_direction=0,triggered_bit=true]", + "minecraft:dropper[facing=down,triggered=false]": "minecraft:dropper[facing_direction=0,triggered_bit=false]", + "minecraft:white_terracotta[]": "minecraft:white_terracotta[]", + "minecraft:orange_terracotta[]": "minecraft:orange_terracotta[]", + "minecraft:magenta_terracotta[]": "minecraft:magenta_terracotta[]", + "minecraft:light_blue_terracotta[]": "minecraft:light_blue_terracotta[]", + "minecraft:yellow_terracotta[]": "minecraft:yellow_terracotta[]", + "minecraft:lime_terracotta[]": "minecraft:lime_terracotta[]", + "minecraft:pink_terracotta[]": "minecraft:pink_terracotta[]", + "minecraft:gray_terracotta[]": "minecraft:gray_terracotta[]", + "minecraft:light_gray_terracotta[]": "minecraft:light_gray_terracotta[]", + "minecraft:cyan_terracotta[]": "minecraft:cyan_terracotta[]", + "minecraft:purple_terracotta[]": "minecraft:purple_terracotta[]", + "minecraft:blue_terracotta[]": "minecraft:blue_terracotta[]", + "minecraft:brown_terracotta[]": "minecraft:brown_terracotta[]", + "minecraft:green_terracotta[]": "minecraft:green_terracotta[]", + "minecraft:red_terracotta[]": "minecraft:red_terracotta[]", + "minecraft:black_terracotta[]": "minecraft:black_terracotta[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:pale_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:pale_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:slime_block[]": "minecraft:slime[]", + "minecraft:barrier[waterlogged=true]": "minecraft:barrier[]", + "minecraft:barrier[waterlogged=false]": "minecraft:barrier[]", + "minecraft:light[level=0,waterlogged=true]": "minecraft:light_block_0[]", + "minecraft:light[level=0,waterlogged=false]": "minecraft:light_block_0[]", + "minecraft:light[level=1,waterlogged=true]": "minecraft:light_block_1[]", + "minecraft:light[level=1,waterlogged=false]": "minecraft:light_block_1[]", + "minecraft:light[level=2,waterlogged=true]": "minecraft:light_block_2[]", + "minecraft:light[level=2,waterlogged=false]": "minecraft:light_block_2[]", + "minecraft:light[level=3,waterlogged=true]": "minecraft:light_block_3[]", + "minecraft:light[level=3,waterlogged=false]": "minecraft:light_block_3[]", + "minecraft:light[level=4,waterlogged=true]": "minecraft:light_block_4[]", + "minecraft:light[level=4,waterlogged=false]": "minecraft:light_block_4[]", + "minecraft:light[level=5,waterlogged=true]": "minecraft:light_block_5[]", + "minecraft:light[level=5,waterlogged=false]": "minecraft:light_block_5[]", + "minecraft:light[level=6,waterlogged=true]": "minecraft:light_block_6[]", + "minecraft:light[level=6,waterlogged=false]": "minecraft:light_block_6[]", + "minecraft:light[level=7,waterlogged=true]": "minecraft:light_block_7[]", + "minecraft:light[level=7,waterlogged=false]": "minecraft:light_block_7[]", + "minecraft:light[level=8,waterlogged=true]": "minecraft:light_block_8[]", + "minecraft:light[level=8,waterlogged=false]": "minecraft:light_block_8[]", + "minecraft:light[level=9,waterlogged=true]": "minecraft:light_block_9[]", + "minecraft:light[level=9,waterlogged=false]": "minecraft:light_block_9[]", + "minecraft:light[level=10,waterlogged=true]": "minecraft:light_block_10[]", + "minecraft:light[level=10,waterlogged=false]": "minecraft:light_block_10[]", + "minecraft:light[level=11,waterlogged=true]": "minecraft:light_block_11[]", + "minecraft:light[level=11,waterlogged=false]": "minecraft:light_block_11[]", + "minecraft:light[level=12,waterlogged=true]": "minecraft:light_block_12[]", + "minecraft:light[level=12,waterlogged=false]": "minecraft:light_block_12[]", + "minecraft:light[level=13,waterlogged=true]": "minecraft:light_block_13[]", + "minecraft:light[level=13,waterlogged=false]": "minecraft:light_block_13[]", + "minecraft:light[level=14,waterlogged=true]": "minecraft:light_block_14[]", + "minecraft:light[level=14,waterlogged=false]": "minecraft:light_block_14[]", + "minecraft:light[level=15,waterlogged=true]": "minecraft:light_block_15[]", + "minecraft:light[level=15,waterlogged=false]": "minecraft:light_block_15[]", + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:prismarine[]": "minecraft:prismarine[]", + "minecraft:prismarine_bricks[]": "minecraft:prismarine_bricks[]", + "minecraft:dark_prismarine[]": "minecraft:dark_prismarine[]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_slab[type=top,waterlogged=true]": "minecraft:prismarine_slab[minecraft:vertical_half=top]", + "minecraft:prismarine_slab[type=top,waterlogged=false]": "minecraft:prismarine_slab[minecraft:vertical_half=top]", + "minecraft:prismarine_slab[type=bottom,waterlogged=true]": "minecraft:prismarine_slab[minecraft:vertical_half=bottom]", + "minecraft:prismarine_slab[type=bottom,waterlogged=false]": "minecraft:prismarine_slab[minecraft:vertical_half=bottom]", + "minecraft:prismarine_slab[type=double,waterlogged=true]": "minecraft:prismarine_double_slab[minecraft:vertical_half=bottom]", + "minecraft:prismarine_slab[type=double,waterlogged=false]": "minecraft:prismarine_double_slab[minecraft:vertical_half=bottom]", + "minecraft:prismarine_brick_slab[type=top,waterlogged=true]": "minecraft:prismarine_brick_slab[minecraft:vertical_half=top]", + "minecraft:prismarine_brick_slab[type=top,waterlogged=false]": "minecraft:prismarine_brick_slab[minecraft:vertical_half=top]", + "minecraft:prismarine_brick_slab[type=bottom,waterlogged=true]": "minecraft:prismarine_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:prismarine_brick_slab[type=bottom,waterlogged=false]": "minecraft:prismarine_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:prismarine_brick_slab[type=double,waterlogged=true]": "minecraft:prismarine_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:prismarine_brick_slab[type=double,waterlogged=false]": "minecraft:prismarine_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_prismarine_slab[type=top,waterlogged=true]": "minecraft:dark_prismarine_slab[minecraft:vertical_half=top]", + "minecraft:dark_prismarine_slab[type=top,waterlogged=false]": "minecraft:dark_prismarine_slab[minecraft:vertical_half=top]", + "minecraft:dark_prismarine_slab[type=bottom,waterlogged=true]": "minecraft:dark_prismarine_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_prismarine_slab[type=bottom,waterlogged=false]": "minecraft:dark_prismarine_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_prismarine_slab[type=double,waterlogged=true]": "minecraft:dark_prismarine_double_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_prismarine_slab[type=double,waterlogged=false]": "minecraft:dark_prismarine_double_slab[minecraft:vertical_half=bottom]", + "minecraft:sea_lantern[]": "minecraft:sea_lantern[]", + "minecraft:hay_block[axis=x]": "minecraft:hay_block[deprecated=0,pillar_axis=x]", + "minecraft:hay_block[axis=y]": "minecraft:hay_block[deprecated=0,pillar_axis=y]", + "minecraft:hay_block[axis=z]": "minecraft:hay_block[deprecated=0,pillar_axis=z]", + "minecraft:white_carpet[]": "minecraft:white_carpet[]", + "minecraft:orange_carpet[]": "minecraft:orange_carpet[]", + "minecraft:magenta_carpet[]": "minecraft:magenta_carpet[]", + "minecraft:light_blue_carpet[]": "minecraft:light_blue_carpet[]", + "minecraft:yellow_carpet[]": "minecraft:yellow_carpet[]", + "minecraft:lime_carpet[]": "minecraft:lime_carpet[]", + "minecraft:pink_carpet[]": "minecraft:pink_carpet[]", + "minecraft:gray_carpet[]": "minecraft:gray_carpet[]", + "minecraft:light_gray_carpet[]": "minecraft:light_gray_carpet[]", + "minecraft:cyan_carpet[]": "minecraft:cyan_carpet[]", + "minecraft:purple_carpet[]": "minecraft:purple_carpet[]", + "minecraft:blue_carpet[]": "minecraft:blue_carpet[]", + "minecraft:brown_carpet[]": "minecraft:brown_carpet[]", + "minecraft:green_carpet[]": "minecraft:green_carpet[]", + "minecraft:red_carpet[]": "minecraft:red_carpet[]", + "minecraft:black_carpet[]": "minecraft:black_carpet[]", + "minecraft:terracotta[]": "minecraft:hardened_clay[]", + "minecraft:coal_block[]": "minecraft:coal_block[]", + "minecraft:packed_ice[]": "minecraft:packed_ice[]", + "minecraft:sunflower[half=upper]": "minecraft:sunflower[upper_block_bit=true]", + "minecraft:sunflower[half=lower]": "minecraft:sunflower[upper_block_bit=false]", + "minecraft:lilac[half=upper]": "minecraft:lilac[upper_block_bit=true]", + "minecraft:lilac[half=lower]": "minecraft:lilac[upper_block_bit=false]", + "minecraft:rose_bush[half=upper]": "minecraft:rose_bush[upper_block_bit=true]", + "minecraft:rose_bush[half=lower]": "minecraft:rose_bush[upper_block_bit=false]", + "minecraft:peony[half=upper]": "minecraft:peony[upper_block_bit=true]", + "minecraft:peony[half=lower]": "minecraft:peony[upper_block_bit=false]", + "minecraft:tall_grass[half=upper]": "minecraft:tall_grass[upper_block_bit=true]", + "minecraft:tall_grass[half=lower]": "minecraft:tall_grass[upper_block_bit=false]", + "minecraft:large_fern[half=upper]": "minecraft:large_fern[upper_block_bit=true]", + "minecraft:large_fern[half=lower]": "minecraft:large_fern[upper_block_bit=false]", + "minecraft:white_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:white_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:white_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:white_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:white_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:white_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:white_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:white_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:white_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:white_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:white_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:white_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:white_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:white_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:white_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:white_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:orange_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:orange_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:orange_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:orange_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:orange_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:orange_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:orange_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:orange_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:orange_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:orange_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:orange_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:orange_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:orange_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:orange_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:orange_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:orange_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:magenta_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:magenta_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:magenta_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:magenta_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:magenta_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:magenta_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:magenta_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:magenta_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:magenta_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:magenta_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:magenta_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:magenta_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:magenta_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:magenta_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:magenta_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:magenta_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:light_blue_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:light_blue_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:light_blue_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:light_blue_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:light_blue_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:light_blue_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:light_blue_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:light_blue_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:light_blue_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:light_blue_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:light_blue_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:light_blue_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:light_blue_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:light_blue_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:light_blue_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:light_blue_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:yellow_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:yellow_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:yellow_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:yellow_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:yellow_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:yellow_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:yellow_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:yellow_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:yellow_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:yellow_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:yellow_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:yellow_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:yellow_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:yellow_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:yellow_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:yellow_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:lime_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:lime_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:lime_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:lime_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:lime_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:lime_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:lime_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:lime_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:lime_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:lime_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:lime_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:lime_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:lime_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:lime_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:lime_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:lime_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:pink_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:pink_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:pink_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:pink_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:pink_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:pink_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:pink_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:pink_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:pink_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:pink_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:pink_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:pink_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:pink_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:pink_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:pink_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:pink_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:gray_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:gray_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:gray_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:gray_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:gray_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:gray_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:gray_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:gray_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:gray_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:gray_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:gray_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:gray_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:gray_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:gray_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:gray_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:gray_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:light_gray_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:light_gray_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:light_gray_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:light_gray_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:light_gray_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:light_gray_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:light_gray_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:light_gray_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:light_gray_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:light_gray_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:light_gray_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:light_gray_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:light_gray_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:light_gray_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:light_gray_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:light_gray_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:cyan_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:cyan_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:cyan_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:cyan_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:cyan_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:cyan_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:cyan_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:cyan_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:cyan_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:cyan_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:cyan_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:cyan_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:cyan_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:cyan_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:cyan_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:cyan_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:purple_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:purple_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:purple_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:purple_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:purple_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:purple_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:purple_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:purple_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:purple_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:purple_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:purple_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:purple_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:purple_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:purple_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:purple_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:purple_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:blue_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:blue_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:blue_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:blue_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:blue_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:blue_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:blue_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:blue_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:blue_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:blue_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:blue_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:blue_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:blue_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:blue_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:blue_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:blue_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:brown_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:brown_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:brown_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:brown_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:brown_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:brown_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:brown_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:brown_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:brown_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:brown_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:brown_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:brown_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:brown_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:brown_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:brown_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:brown_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:green_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:green_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:green_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:green_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:green_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:green_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:green_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:green_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:green_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:green_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:green_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:green_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:green_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:green_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:green_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:green_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:red_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:red_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:red_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:red_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:red_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:red_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:red_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:red_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:red_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:red_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:red_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:red_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:red_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:red_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:red_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:red_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:black_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:black_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:black_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:black_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:black_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:black_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:black_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:black_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:black_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:black_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:black_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:black_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:black_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:black_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:black_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:black_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:white_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:white_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:white_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:white_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:orange_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:orange_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:orange_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:orange_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:magenta_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:magenta_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:magenta_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:magenta_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:light_blue_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:light_blue_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:light_blue_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:light_blue_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:yellow_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:yellow_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:yellow_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:yellow_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:lime_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:lime_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:lime_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:lime_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:pink_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:pink_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:pink_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:pink_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:gray_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:gray_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:gray_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:gray_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:light_gray_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:light_gray_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:light_gray_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:light_gray_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:cyan_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:cyan_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:cyan_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:cyan_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:purple_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:purple_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:purple_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:purple_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:blue_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:blue_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:blue_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:blue_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:brown_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:brown_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:brown_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:brown_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:green_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:green_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:green_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:green_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:red_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:red_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:red_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:red_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:black_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:black_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:black_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:black_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:red_sandstone[]": "minecraft:red_sandstone[]", + "minecraft:chiseled_red_sandstone[]": "minecraft:chiseled_red_sandstone[]", + "minecraft:cut_red_sandstone[]": "minecraft:cut_red_sandstone[]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_slab[type=top,waterlogged=true]": "minecraft:oak_slab[minecraft:vertical_half=top]", + "minecraft:oak_slab[type=top,waterlogged=false]": "minecraft:oak_slab[minecraft:vertical_half=top]", + "minecraft:oak_slab[type=bottom,waterlogged=true]": "minecraft:oak_slab[minecraft:vertical_half=bottom]", + "minecraft:oak_slab[type=bottom,waterlogged=false]": "minecraft:oak_slab[minecraft:vertical_half=bottom]", + "minecraft:oak_slab[type=double,waterlogged=true]": "minecraft:oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:oak_slab[type=double,waterlogged=false]": "minecraft:oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:spruce_slab[type=top,waterlogged=true]": "minecraft:spruce_slab[minecraft:vertical_half=top]", + "minecraft:spruce_slab[type=top,waterlogged=false]": "minecraft:spruce_slab[minecraft:vertical_half=top]", + "minecraft:spruce_slab[type=bottom,waterlogged=true]": "minecraft:spruce_slab[minecraft:vertical_half=bottom]", + "minecraft:spruce_slab[type=bottom,waterlogged=false]": "minecraft:spruce_slab[minecraft:vertical_half=bottom]", + "minecraft:spruce_slab[type=double,waterlogged=true]": "minecraft:spruce_double_slab[minecraft:vertical_half=bottom]", + "minecraft:spruce_slab[type=double,waterlogged=false]": "minecraft:spruce_double_slab[minecraft:vertical_half=bottom]", + "minecraft:birch_slab[type=top,waterlogged=true]": "minecraft:birch_slab[minecraft:vertical_half=top]", + "minecraft:birch_slab[type=top,waterlogged=false]": "minecraft:birch_slab[minecraft:vertical_half=top]", + "minecraft:birch_slab[type=bottom,waterlogged=true]": "minecraft:birch_slab[minecraft:vertical_half=bottom]", + "minecraft:birch_slab[type=bottom,waterlogged=false]": "minecraft:birch_slab[minecraft:vertical_half=bottom]", + "minecraft:birch_slab[type=double,waterlogged=true]": "minecraft:birch_double_slab[minecraft:vertical_half=bottom]", + "minecraft:birch_slab[type=double,waterlogged=false]": "minecraft:birch_double_slab[minecraft:vertical_half=bottom]", + "minecraft:jungle_slab[type=top,waterlogged=true]": "minecraft:jungle_slab[minecraft:vertical_half=top]", + "minecraft:jungle_slab[type=top,waterlogged=false]": "minecraft:jungle_slab[minecraft:vertical_half=top]", + "minecraft:jungle_slab[type=bottom,waterlogged=true]": "minecraft:jungle_slab[minecraft:vertical_half=bottom]", + "minecraft:jungle_slab[type=bottom,waterlogged=false]": "minecraft:jungle_slab[minecraft:vertical_half=bottom]", + "minecraft:jungle_slab[type=double,waterlogged=true]": "minecraft:jungle_double_slab[minecraft:vertical_half=bottom]", + "minecraft:jungle_slab[type=double,waterlogged=false]": "minecraft:jungle_double_slab[minecraft:vertical_half=bottom]", + "minecraft:acacia_slab[type=top,waterlogged=true]": "minecraft:acacia_slab[minecraft:vertical_half=top]", + "minecraft:acacia_slab[type=top,waterlogged=false]": "minecraft:acacia_slab[minecraft:vertical_half=top]", + "minecraft:acacia_slab[type=bottom,waterlogged=true]": "minecraft:acacia_slab[minecraft:vertical_half=bottom]", + "minecraft:acacia_slab[type=bottom,waterlogged=false]": "minecraft:acacia_slab[minecraft:vertical_half=bottom]", + "minecraft:acacia_slab[type=double,waterlogged=true]": "minecraft:acacia_double_slab[minecraft:vertical_half=bottom]", + "minecraft:acacia_slab[type=double,waterlogged=false]": "minecraft:acacia_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cherry_slab[type=top,waterlogged=true]": "minecraft:cherry_slab[minecraft:vertical_half=top]", + "minecraft:cherry_slab[type=top,waterlogged=false]": "minecraft:cherry_slab[minecraft:vertical_half=top]", + "minecraft:cherry_slab[type=bottom,waterlogged=true]": "minecraft:cherry_slab[minecraft:vertical_half=bottom]", + "minecraft:cherry_slab[type=bottom,waterlogged=false]": "minecraft:cherry_slab[minecraft:vertical_half=bottom]", + "minecraft:cherry_slab[type=double,waterlogged=true]": "minecraft:cherry_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cherry_slab[type=double,waterlogged=false]": "minecraft:cherry_double_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_oak_slab[type=top,waterlogged=true]": "minecraft:dark_oak_slab[minecraft:vertical_half=top]", + "minecraft:dark_oak_slab[type=top,waterlogged=false]": "minecraft:dark_oak_slab[minecraft:vertical_half=top]", + "minecraft:dark_oak_slab[type=bottom,waterlogged=true]": "minecraft:dark_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_oak_slab[type=bottom,waterlogged=false]": "minecraft:dark_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_oak_slab[type=double,waterlogged=true]": "minecraft:dark_oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_oak_slab[type=double,waterlogged=false]": "minecraft:dark_oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:pale_oak_slab[type=top,waterlogged=true]": "minecraft:pale_oak_slab[minecraft:vertical_half=top]", + "minecraft:pale_oak_slab[type=top,waterlogged=false]": "minecraft:pale_oak_slab[minecraft:vertical_half=top]", + "minecraft:pale_oak_slab[type=bottom,waterlogged=true]": "minecraft:pale_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:pale_oak_slab[type=bottom,waterlogged=false]": "minecraft:pale_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:pale_oak_slab[type=double,waterlogged=true]": "minecraft:pale_oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:pale_oak_slab[type=double,waterlogged=false]": "minecraft:pale_oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mangrove_slab[type=top,waterlogged=true]": "minecraft:mangrove_slab[minecraft:vertical_half=top]", + "minecraft:mangrove_slab[type=top,waterlogged=false]": "minecraft:mangrove_slab[minecraft:vertical_half=top]", + "minecraft:mangrove_slab[type=bottom,waterlogged=true]": "minecraft:mangrove_slab[minecraft:vertical_half=bottom]", + "minecraft:mangrove_slab[type=bottom,waterlogged=false]": "minecraft:mangrove_slab[minecraft:vertical_half=bottom]", + "minecraft:mangrove_slab[type=double,waterlogged=true]": "minecraft:mangrove_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mangrove_slab[type=double,waterlogged=false]": "minecraft:mangrove_double_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_slab[type=top,waterlogged=true]": "minecraft:bamboo_slab[minecraft:vertical_half=top]", + "minecraft:bamboo_slab[type=top,waterlogged=false]": "minecraft:bamboo_slab[minecraft:vertical_half=top]", + "minecraft:bamboo_slab[type=bottom,waterlogged=true]": "minecraft:bamboo_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_slab[type=bottom,waterlogged=false]": "minecraft:bamboo_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_slab[type=double,waterlogged=true]": "minecraft:bamboo_double_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_slab[type=double,waterlogged=false]": "minecraft:bamboo_double_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_mosaic_slab[type=top,waterlogged=true]": "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=top]", + "minecraft:bamboo_mosaic_slab[type=top,waterlogged=false]": "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=top]", + "minecraft:bamboo_mosaic_slab[type=bottom,waterlogged=true]": "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_mosaic_slab[type=bottom,waterlogged=false]": "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_mosaic_slab[type=double,waterlogged=true]": "minecraft:bamboo_mosaic_double_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_mosaic_slab[type=double,waterlogged=false]": "minecraft:bamboo_mosaic_double_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_slab[type=top,waterlogged=true]": "minecraft:normal_stone_slab[minecraft:vertical_half=top]", + "minecraft:stone_slab[type=top,waterlogged=false]": "minecraft:normal_stone_slab[minecraft:vertical_half=top]", + "minecraft:stone_slab[type=bottom,waterlogged=true]": "minecraft:normal_stone_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_slab[type=bottom,waterlogged=false]": "minecraft:normal_stone_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_slab[type=double,waterlogged=true]": "minecraft:normal_stone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_slab[type=double,waterlogged=false]": "minecraft:normal_stone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_stone_slab[type=top,waterlogged=true]": "minecraft:smooth_stone_slab[minecraft:vertical_half=top]", + "minecraft:smooth_stone_slab[type=top,waterlogged=false]": "minecraft:smooth_stone_slab[minecraft:vertical_half=top]", + "minecraft:smooth_stone_slab[type=bottom,waterlogged=true]": "minecraft:smooth_stone_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_stone_slab[type=bottom,waterlogged=false]": "minecraft:smooth_stone_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_stone_slab[type=double,waterlogged=true]": "minecraft:smooth_stone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_stone_slab[type=double,waterlogged=false]": "minecraft:smooth_stone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:sandstone_slab[type=top,waterlogged=true]": "minecraft:sandstone_slab[minecraft:vertical_half=top]", + "minecraft:sandstone_slab[type=top,waterlogged=false]": "minecraft:sandstone_slab[minecraft:vertical_half=top]", + "minecraft:sandstone_slab[type=bottom,waterlogged=true]": "minecraft:sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:sandstone_slab[type=bottom,waterlogged=false]": "minecraft:sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:sandstone_slab[type=double,waterlogged=true]": "minecraft:sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:sandstone_slab[type=double,waterlogged=false]": "minecraft:sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_sandstone_slab[type=top,waterlogged=true]": "minecraft:cut_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:cut_sandstone_slab[type=top,waterlogged=false]": "minecraft:cut_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:cut_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:cut_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:cut_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_sandstone_slab[type=double,waterlogged=true]": "minecraft:cut_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_sandstone_slab[type=double,waterlogged=false]": "minecraft:cut_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:petrified_oak_slab[type=top,waterlogged=true]": "minecraft:petrified_oak_slab[minecraft:vertical_half=top]", + "minecraft:petrified_oak_slab[type=top,waterlogged=false]": "minecraft:petrified_oak_slab[minecraft:vertical_half=top]", + "minecraft:petrified_oak_slab[type=bottom,waterlogged=true]": "minecraft:petrified_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:petrified_oak_slab[type=bottom,waterlogged=false]": "minecraft:petrified_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:petrified_oak_slab[type=double,waterlogged=true]": "minecraft:petrified_oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:petrified_oak_slab[type=double,waterlogged=false]": "minecraft:petrified_oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cobblestone_slab[type=top,waterlogged=true]": "minecraft:cobblestone_slab[minecraft:vertical_half=top]", + "minecraft:cobblestone_slab[type=top,waterlogged=false]": "minecraft:cobblestone_slab[minecraft:vertical_half=top]", + "minecraft:cobblestone_slab[type=bottom,waterlogged=true]": "minecraft:cobblestone_slab[minecraft:vertical_half=bottom]", + "minecraft:cobblestone_slab[type=bottom,waterlogged=false]": "minecraft:cobblestone_slab[minecraft:vertical_half=bottom]", + "minecraft:cobblestone_slab[type=double,waterlogged=true]": "minecraft:cobblestone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cobblestone_slab[type=double,waterlogged=false]": "minecraft:cobblestone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:brick_slab[type=top,waterlogged=true]": "minecraft:brick_slab[minecraft:vertical_half=top]", + "minecraft:brick_slab[type=top,waterlogged=false]": "minecraft:brick_slab[minecraft:vertical_half=top]", + "minecraft:brick_slab[type=bottom,waterlogged=true]": "minecraft:brick_slab[minecraft:vertical_half=bottom]", + "minecraft:brick_slab[type=bottom,waterlogged=false]": "minecraft:brick_slab[minecraft:vertical_half=bottom]", + "minecraft:brick_slab[type=double,waterlogged=true]": "minecraft:brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:brick_slab[type=double,waterlogged=false]": "minecraft:brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_brick_slab[type=top,waterlogged=true]": "minecraft:stone_brick_slab[minecraft:vertical_half=top]", + "minecraft:stone_brick_slab[type=top,waterlogged=false]": "minecraft:stone_brick_slab[minecraft:vertical_half=top]", + "minecraft:stone_brick_slab[type=bottom,waterlogged=true]": "minecraft:stone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_brick_slab[type=bottom,waterlogged=false]": "minecraft:stone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_brick_slab[type=double,waterlogged=true]": "minecraft:stone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_brick_slab[type=double,waterlogged=false]": "minecraft:stone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mud_brick_slab[type=top,waterlogged=true]": "minecraft:mud_brick_slab[minecraft:vertical_half=top]", + "minecraft:mud_brick_slab[type=top,waterlogged=false]": "minecraft:mud_brick_slab[minecraft:vertical_half=top]", + "minecraft:mud_brick_slab[type=bottom,waterlogged=true]": "minecraft:mud_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:mud_brick_slab[type=bottom,waterlogged=false]": "minecraft:mud_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:mud_brick_slab[type=double,waterlogged=true]": "minecraft:mud_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mud_brick_slab[type=double,waterlogged=false]": "minecraft:mud_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:nether_brick_slab[type=top,waterlogged=true]": "minecraft:nether_brick_slab[minecraft:vertical_half=top]", + "minecraft:nether_brick_slab[type=top,waterlogged=false]": "minecraft:nether_brick_slab[minecraft:vertical_half=top]", + "minecraft:nether_brick_slab[type=bottom,waterlogged=true]": "minecraft:nether_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:nether_brick_slab[type=bottom,waterlogged=false]": "minecraft:nether_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:nether_brick_slab[type=double,waterlogged=true]": "minecraft:nether_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:nether_brick_slab[type=double,waterlogged=false]": "minecraft:nether_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:quartz_slab[type=top,waterlogged=true]": "minecraft:quartz_slab[minecraft:vertical_half=top]", + "minecraft:quartz_slab[type=top,waterlogged=false]": "minecraft:quartz_slab[minecraft:vertical_half=top]", + "minecraft:quartz_slab[type=bottom,waterlogged=true]": "minecraft:quartz_slab[minecraft:vertical_half=bottom]", + "minecraft:quartz_slab[type=bottom,waterlogged=false]": "minecraft:quartz_slab[minecraft:vertical_half=bottom]", + "minecraft:quartz_slab[type=double,waterlogged=true]": "minecraft:quartz_double_slab[minecraft:vertical_half=bottom]", + "minecraft:quartz_slab[type=double,waterlogged=false]": "minecraft:quartz_double_slab[minecraft:vertical_half=bottom]", + "minecraft:red_sandstone_slab[type=top,waterlogged=true]": "minecraft:red_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:red_sandstone_slab[type=top,waterlogged=false]": "minecraft:red_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:red_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:red_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:red_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:red_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:red_sandstone_slab[type=double,waterlogged=true]": "minecraft:red_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:red_sandstone_slab[type=double,waterlogged=false]": "minecraft:red_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_red_sandstone_slab[type=top,waterlogged=true]": "minecraft:cut_red_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:cut_red_sandstone_slab[type=top,waterlogged=false]": "minecraft:cut_red_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:cut_red_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:cut_red_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_red_sandstone_slab[type=double,waterlogged=true]": "minecraft:cut_red_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_red_sandstone_slab[type=double,waterlogged=false]": "minecraft:cut_red_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:purpur_slab[type=top,waterlogged=true]": "minecraft:purpur_slab[minecraft:vertical_half=top]", + "minecraft:purpur_slab[type=top,waterlogged=false]": "minecraft:purpur_slab[minecraft:vertical_half=top]", + "minecraft:purpur_slab[type=bottom,waterlogged=true]": "minecraft:purpur_slab[minecraft:vertical_half=bottom]", + "minecraft:purpur_slab[type=bottom,waterlogged=false]": "minecraft:purpur_slab[minecraft:vertical_half=bottom]", + "minecraft:purpur_slab[type=double,waterlogged=true]": "minecraft:purpur_double_slab[minecraft:vertical_half=bottom]", + "minecraft:purpur_slab[type=double,waterlogged=false]": "minecraft:purpur_double_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_stone[]": "minecraft:smooth_stone[]", + "minecraft:smooth_sandstone[]": "minecraft:smooth_sandstone[]", + "minecraft:smooth_quartz[]": "minecraft:smooth_quartz[pillar_axis=y]", + "minecraft:smooth_red_sandstone[]": "minecraft:smooth_red_sandstone[]", + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:spruce_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:birch_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:jungle_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:acacia_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:cherry_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:dark_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:pale_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:pale_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:pale_oak_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:mangrove_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:bamboo_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:pale_oak_fence[]", + "minecraft:pale_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:pale_oak_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:spruce_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:birch_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:jungle_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:acacia_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:cherry_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:pale_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:pale_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:pale_oak_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:end_rod[facing=north]": "minecraft:end_rod[facing_direction=3]", + "minecraft:end_rod[facing=east]": "minecraft:end_rod[facing_direction=4]", + "minecraft:end_rod[facing=south]": "minecraft:end_rod[facing_direction=2]", + "minecraft:end_rod[facing=west]": "minecraft:end_rod[facing_direction=5]", + "minecraft:end_rod[facing=up]": "minecraft:end_rod[facing_direction=1]", + "minecraft:end_rod[facing=down]": "minecraft:end_rod[facing_direction=0]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_flower[age=0]": "minecraft:chorus_flower[age=0]", + "minecraft:chorus_flower[age=1]": "minecraft:chorus_flower[age=1]", + "minecraft:chorus_flower[age=2]": "minecraft:chorus_flower[age=2]", + "minecraft:chorus_flower[age=3]": "minecraft:chorus_flower[age=3]", + "minecraft:chorus_flower[age=4]": "minecraft:chorus_flower[age=4]", + "minecraft:chorus_flower[age=5]": "minecraft:chorus_flower[age=5]", + "minecraft:purpur_block[]": "minecraft:purpur_block[pillar_axis=y]", + "minecraft:purpur_pillar[axis=x]": "minecraft:purpur_pillar[pillar_axis=x]", + "minecraft:purpur_pillar[axis=y]": "minecraft:purpur_pillar[pillar_axis=y]", + "minecraft:purpur_pillar[axis=z]": "minecraft:purpur_pillar[pillar_axis=z]", + "minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_bricks[]": "minecraft:end_bricks[]", + "minecraft:torchflower_crop[age=0]": "minecraft:torchflower_crop[growth=0]", + "minecraft:torchflower_crop[age=1]": "minecraft:torchflower_crop[growth=4]", + "minecraft:pitcher_crop[age=0,half=upper]": "minecraft:pitcher_crop[growth=0,upper_block_bit=true]", + "minecraft:pitcher_crop[age=0,half=lower]": "minecraft:pitcher_crop[growth=0,upper_block_bit=false]", + "minecraft:pitcher_crop[age=1,half=upper]": "minecraft:pitcher_crop[growth=1,upper_block_bit=true]", + "minecraft:pitcher_crop[age=1,half=lower]": "minecraft:pitcher_crop[growth=1,upper_block_bit=false]", + "minecraft:pitcher_crop[age=2,half=upper]": "minecraft:pitcher_crop[growth=3,upper_block_bit=true]", + "minecraft:pitcher_crop[age=2,half=lower]": "minecraft:pitcher_crop[growth=3,upper_block_bit=false]", + "minecraft:pitcher_crop[age=3,half=upper]": "minecraft:pitcher_crop[growth=5,upper_block_bit=true]", + "minecraft:pitcher_crop[age=3,half=lower]": "minecraft:pitcher_crop[growth=5,upper_block_bit=false]", + "minecraft:pitcher_crop[age=4,half=upper]": "minecraft:pitcher_crop[growth=7,upper_block_bit=true]", + "minecraft:pitcher_crop[age=4,half=lower]": "minecraft:pitcher_crop[growth=7,upper_block_bit=false]", + "minecraft:pitcher_plant[half=upper]": "minecraft:pitcher_plant[upper_block_bit=true]", + "minecraft:pitcher_plant[half=lower]": "minecraft:pitcher_plant[upper_block_bit=false]", + "minecraft:beetroots[age=0]": "minecraft:beetroot[growth=0]", + "minecraft:beetroots[age=1]": "minecraft:beetroot[growth=3]", + "minecraft:beetroots[age=2]": "minecraft:beetroot[growth=4]", + "minecraft:beetroots[age=3]": "minecraft:beetroot[growth=7]", + "minecraft:dirt_path[]": "minecraft:grass_path[]", + "minecraft:end_gateway[]": "minecraft:end_gateway[]", + "minecraft:repeating_command_block[conditional=true,facing=north]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=2]", + "minecraft:repeating_command_block[conditional=true,facing=east]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=5]", + "minecraft:repeating_command_block[conditional=true,facing=south]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=3]", + "minecraft:repeating_command_block[conditional=true,facing=west]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=4]", + "minecraft:repeating_command_block[conditional=true,facing=up]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=1]", + "minecraft:repeating_command_block[conditional=true,facing=down]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=0]", + "minecraft:repeating_command_block[conditional=false,facing=north]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=2]", + "minecraft:repeating_command_block[conditional=false,facing=east]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=5]", + "minecraft:repeating_command_block[conditional=false,facing=south]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=3]", + "minecraft:repeating_command_block[conditional=false,facing=west]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=4]", + "minecraft:repeating_command_block[conditional=false,facing=up]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=1]", + "minecraft:repeating_command_block[conditional=false,facing=down]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=0]", + "minecraft:chain_command_block[conditional=true,facing=north]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=2]", + "minecraft:chain_command_block[conditional=true,facing=east]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=5]", + "minecraft:chain_command_block[conditional=true,facing=south]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=3]", + "minecraft:chain_command_block[conditional=true,facing=west]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=4]", + "minecraft:chain_command_block[conditional=true,facing=up]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=1]", + "minecraft:chain_command_block[conditional=true,facing=down]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=0]", + "minecraft:chain_command_block[conditional=false,facing=north]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=2]", + "minecraft:chain_command_block[conditional=false,facing=east]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=5]", + "minecraft:chain_command_block[conditional=false,facing=south]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=3]", + "minecraft:chain_command_block[conditional=false,facing=west]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=4]", + "minecraft:chain_command_block[conditional=false,facing=up]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=1]", + "minecraft:chain_command_block[conditional=false,facing=down]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=0]", + "minecraft:frosted_ice[age=0]": "minecraft:frosted_ice[age=0]", + "minecraft:frosted_ice[age=1]": "minecraft:frosted_ice[age=1]", + "minecraft:frosted_ice[age=2]": "minecraft:frosted_ice[age=2]", + "minecraft:frosted_ice[age=3]": "minecraft:frosted_ice[age=3]", + "minecraft:magma_block[]": "minecraft:magma[]", + "minecraft:nether_wart_block[]": "minecraft:nether_wart_block[]", + "minecraft:red_nether_bricks[]": "minecraft:red_nether_brick[]", + "minecraft:bone_block[axis=x]": "minecraft:bone_block[deprecated=0,pillar_axis=x]", + "minecraft:bone_block[axis=y]": "minecraft:bone_block[deprecated=0,pillar_axis=y]", + "minecraft:bone_block[axis=z]": "minecraft:bone_block[deprecated=0,pillar_axis=z]", + "minecraft:structure_void[]": "minecraft:structure_void[]", + "minecraft:observer[facing=north,powered=true]": "minecraft:observer[minecraft:facing_direction=north,powered_bit=true]", + "minecraft:observer[facing=north,powered=false]": "minecraft:observer[minecraft:facing_direction=north,powered_bit=false]", + "minecraft:observer[facing=east,powered=true]": "minecraft:observer[minecraft:facing_direction=east,powered_bit=true]", + "minecraft:observer[facing=east,powered=false]": "minecraft:observer[minecraft:facing_direction=east,powered_bit=false]", + "minecraft:observer[facing=south,powered=true]": "minecraft:observer[minecraft:facing_direction=south,powered_bit=true]", + "minecraft:observer[facing=south,powered=false]": "minecraft:observer[minecraft:facing_direction=south,powered_bit=false]", + "minecraft:observer[facing=west,powered=true]": "minecraft:observer[minecraft:facing_direction=west,powered_bit=true]", + "minecraft:observer[facing=west,powered=false]": "minecraft:observer[minecraft:facing_direction=west,powered_bit=false]", + "minecraft:observer[facing=up,powered=true]": "minecraft:observer[minecraft:facing_direction=up,powered_bit=true]", + "minecraft:observer[facing=up,powered=false]": "minecraft:observer[minecraft:facing_direction=up,powered_bit=false]", + "minecraft:observer[facing=down,powered=true]": "minecraft:observer[minecraft:facing_direction=down,powered_bit=true]", + "minecraft:observer[facing=down,powered=false]": "minecraft:observer[minecraft:facing_direction=down,powered_bit=false]", + "minecraft:shulker_box[facing=north]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=east]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=south]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=west]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=up]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=down]": "minecraft:undyed_shulker_box[]", + "minecraft:white_shulker_box[facing=north]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=east]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=south]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=west]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=up]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=down]": "minecraft:white_shulker_box[]", + "minecraft:orange_shulker_box[facing=north]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=east]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=south]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=west]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=up]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=down]": "minecraft:orange_shulker_box[]", + "minecraft:magenta_shulker_box[facing=north]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=east]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=south]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=west]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=up]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=down]": "minecraft:magenta_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=north]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=east]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=south]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=west]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=up]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=down]": "minecraft:light_blue_shulker_box[]", + "minecraft:yellow_shulker_box[facing=north]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=east]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=south]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=west]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=up]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=down]": "minecraft:yellow_shulker_box[]", + "minecraft:lime_shulker_box[facing=north]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=east]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=south]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=west]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=up]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=down]": "minecraft:lime_shulker_box[]", + "minecraft:pink_shulker_box[facing=north]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=east]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=south]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=west]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=up]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=down]": "minecraft:pink_shulker_box[]", + "minecraft:gray_shulker_box[facing=north]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=east]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=south]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=west]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=up]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=down]": "minecraft:gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=north]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=east]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=south]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=west]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=up]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=down]": "minecraft:light_gray_shulker_box[]", + "minecraft:cyan_shulker_box[facing=north]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=east]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=south]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=west]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=up]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=down]": "minecraft:cyan_shulker_box[]", + "minecraft:purple_shulker_box[facing=north]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=east]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=south]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=west]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=up]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=down]": "minecraft:purple_shulker_box[]", + "minecraft:blue_shulker_box[facing=north]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=east]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=south]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=west]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=up]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=down]": "minecraft:blue_shulker_box[]", + "minecraft:brown_shulker_box[facing=north]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=east]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=south]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=west]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=up]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=down]": "minecraft:brown_shulker_box[]", + "minecraft:green_shulker_box[facing=north]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=east]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=south]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=west]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=up]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=down]": "minecraft:green_shulker_box[]", + "minecraft:red_shulker_box[facing=north]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=east]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=south]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=west]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=up]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=down]": "minecraft:red_shulker_box[]", + "minecraft:black_shulker_box[facing=north]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=east]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=south]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=west]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=up]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=down]": "minecraft:black_shulker_box[]", + "minecraft:white_glazed_terracotta[facing=north]": "minecraft:white_glazed_terracotta[facing_direction=2]", + "minecraft:white_glazed_terracotta[facing=south]": "minecraft:white_glazed_terracotta[facing_direction=3]", + "minecraft:white_glazed_terracotta[facing=west]": "minecraft:white_glazed_terracotta[facing_direction=4]", + "minecraft:white_glazed_terracotta[facing=east]": "minecraft:white_glazed_terracotta[facing_direction=5]", + "minecraft:orange_glazed_terracotta[facing=north]": "minecraft:orange_glazed_terracotta[facing_direction=2]", + "minecraft:orange_glazed_terracotta[facing=south]": "minecraft:orange_glazed_terracotta[facing_direction=3]", + "minecraft:orange_glazed_terracotta[facing=west]": "minecraft:orange_glazed_terracotta[facing_direction=4]", + "minecraft:orange_glazed_terracotta[facing=east]": "minecraft:orange_glazed_terracotta[facing_direction=5]", + "minecraft:magenta_glazed_terracotta[facing=north]": "minecraft:magenta_glazed_terracotta[facing_direction=2]", + "minecraft:magenta_glazed_terracotta[facing=south]": "minecraft:magenta_glazed_terracotta[facing_direction=3]", + "minecraft:magenta_glazed_terracotta[facing=west]": "minecraft:magenta_glazed_terracotta[facing_direction=4]", + "minecraft:magenta_glazed_terracotta[facing=east]": "minecraft:magenta_glazed_terracotta[facing_direction=5]", + "minecraft:light_blue_glazed_terracotta[facing=north]": "minecraft:light_blue_glazed_terracotta[facing_direction=2]", + "minecraft:light_blue_glazed_terracotta[facing=south]": "minecraft:light_blue_glazed_terracotta[facing_direction=3]", + "minecraft:light_blue_glazed_terracotta[facing=west]": "minecraft:light_blue_glazed_terracotta[facing_direction=4]", + "minecraft:light_blue_glazed_terracotta[facing=east]": "minecraft:light_blue_glazed_terracotta[facing_direction=5]", + "minecraft:yellow_glazed_terracotta[facing=north]": "minecraft:yellow_glazed_terracotta[facing_direction=2]", + "minecraft:yellow_glazed_terracotta[facing=south]": "minecraft:yellow_glazed_terracotta[facing_direction=3]", + "minecraft:yellow_glazed_terracotta[facing=west]": "minecraft:yellow_glazed_terracotta[facing_direction=4]", + "minecraft:yellow_glazed_terracotta[facing=east]": "minecraft:yellow_glazed_terracotta[facing_direction=5]", + "minecraft:lime_glazed_terracotta[facing=north]": "minecraft:lime_glazed_terracotta[facing_direction=2]", + "minecraft:lime_glazed_terracotta[facing=south]": "minecraft:lime_glazed_terracotta[facing_direction=3]", + "minecraft:lime_glazed_terracotta[facing=west]": "minecraft:lime_glazed_terracotta[facing_direction=4]", + "minecraft:lime_glazed_terracotta[facing=east]": "minecraft:lime_glazed_terracotta[facing_direction=5]", + "minecraft:pink_glazed_terracotta[facing=north]": "minecraft:pink_glazed_terracotta[facing_direction=2]", + "minecraft:pink_glazed_terracotta[facing=south]": "minecraft:pink_glazed_terracotta[facing_direction=3]", + "minecraft:pink_glazed_terracotta[facing=west]": "minecraft:pink_glazed_terracotta[facing_direction=4]", + "minecraft:pink_glazed_terracotta[facing=east]": "minecraft:pink_glazed_terracotta[facing_direction=5]", + "minecraft:gray_glazed_terracotta[facing=north]": "minecraft:gray_glazed_terracotta[facing_direction=2]", + "minecraft:gray_glazed_terracotta[facing=south]": "minecraft:gray_glazed_terracotta[facing_direction=3]", + "minecraft:gray_glazed_terracotta[facing=west]": "minecraft:gray_glazed_terracotta[facing_direction=4]", + "minecraft:gray_glazed_terracotta[facing=east]": "minecraft:gray_glazed_terracotta[facing_direction=5]", + "minecraft:light_gray_glazed_terracotta[facing=north]": "minecraft:silver_glazed_terracotta[facing_direction=2]", + "minecraft:light_gray_glazed_terracotta[facing=south]": "minecraft:silver_glazed_terracotta[facing_direction=3]", + "minecraft:light_gray_glazed_terracotta[facing=west]": "minecraft:silver_glazed_terracotta[facing_direction=4]", + "minecraft:light_gray_glazed_terracotta[facing=east]": "minecraft:silver_glazed_terracotta[facing_direction=5]", + "minecraft:cyan_glazed_terracotta[facing=north]": "minecraft:cyan_glazed_terracotta[facing_direction=2]", + "minecraft:cyan_glazed_terracotta[facing=south]": "minecraft:cyan_glazed_terracotta[facing_direction=3]", + "minecraft:cyan_glazed_terracotta[facing=west]": "minecraft:cyan_glazed_terracotta[facing_direction=4]", + "minecraft:cyan_glazed_terracotta[facing=east]": "minecraft:cyan_glazed_terracotta[facing_direction=5]", + "minecraft:purple_glazed_terracotta[facing=north]": "minecraft:purple_glazed_terracotta[facing_direction=2]", + "minecraft:purple_glazed_terracotta[facing=south]": "minecraft:purple_glazed_terracotta[facing_direction=3]", + "minecraft:purple_glazed_terracotta[facing=west]": "minecraft:purple_glazed_terracotta[facing_direction=4]", + "minecraft:purple_glazed_terracotta[facing=east]": "minecraft:purple_glazed_terracotta[facing_direction=5]", + "minecraft:blue_glazed_terracotta[facing=north]": "minecraft:blue_glazed_terracotta[facing_direction=2]", + "minecraft:blue_glazed_terracotta[facing=south]": "minecraft:blue_glazed_terracotta[facing_direction=3]", + "minecraft:blue_glazed_terracotta[facing=west]": "minecraft:blue_glazed_terracotta[facing_direction=4]", + "minecraft:blue_glazed_terracotta[facing=east]": "minecraft:blue_glazed_terracotta[facing_direction=5]", + "minecraft:brown_glazed_terracotta[facing=north]": "minecraft:brown_glazed_terracotta[facing_direction=2]", + "minecraft:brown_glazed_terracotta[facing=south]": "minecraft:brown_glazed_terracotta[facing_direction=3]", + "minecraft:brown_glazed_terracotta[facing=west]": "minecraft:brown_glazed_terracotta[facing_direction=4]", + "minecraft:brown_glazed_terracotta[facing=east]": "minecraft:brown_glazed_terracotta[facing_direction=5]", + "minecraft:green_glazed_terracotta[facing=north]": "minecraft:green_glazed_terracotta[facing_direction=2]", + "minecraft:green_glazed_terracotta[facing=south]": "minecraft:green_glazed_terracotta[facing_direction=3]", + "minecraft:green_glazed_terracotta[facing=west]": "minecraft:green_glazed_terracotta[facing_direction=4]", + "minecraft:green_glazed_terracotta[facing=east]": "minecraft:green_glazed_terracotta[facing_direction=5]", + "minecraft:red_glazed_terracotta[facing=north]": "minecraft:red_glazed_terracotta[facing_direction=2]", + "minecraft:red_glazed_terracotta[facing=south]": "minecraft:red_glazed_terracotta[facing_direction=3]", + "minecraft:red_glazed_terracotta[facing=west]": "minecraft:red_glazed_terracotta[facing_direction=4]", + "minecraft:red_glazed_terracotta[facing=east]": "minecraft:red_glazed_terracotta[facing_direction=5]", + "minecraft:black_glazed_terracotta[facing=north]": "minecraft:black_glazed_terracotta[facing_direction=2]", + "minecraft:black_glazed_terracotta[facing=south]": "minecraft:black_glazed_terracotta[facing_direction=3]", + "minecraft:black_glazed_terracotta[facing=west]": "minecraft:black_glazed_terracotta[facing_direction=4]", + "minecraft:black_glazed_terracotta[facing=east]": "minecraft:black_glazed_terracotta[facing_direction=5]", + "minecraft:white_concrete[]": "minecraft:white_concrete[]", + "minecraft:orange_concrete[]": "minecraft:orange_concrete[]", + "minecraft:magenta_concrete[]": "minecraft:magenta_concrete[]", + "minecraft:light_blue_concrete[]": "minecraft:light_blue_concrete[]", + "minecraft:yellow_concrete[]": "minecraft:yellow_concrete[]", + "minecraft:lime_concrete[]": "minecraft:lime_concrete[]", + "minecraft:pink_concrete[]": "minecraft:pink_concrete[]", + "minecraft:gray_concrete[]": "minecraft:gray_concrete[]", + "minecraft:light_gray_concrete[]": "minecraft:light_gray_concrete[]", + "minecraft:cyan_concrete[]": "minecraft:cyan_concrete[]", + "minecraft:purple_concrete[]": "minecraft:purple_concrete[]", + "minecraft:blue_concrete[]": "minecraft:blue_concrete[]", + "minecraft:brown_concrete[]": "minecraft:brown_concrete[]", + "minecraft:green_concrete[]": "minecraft:green_concrete[]", + "minecraft:red_concrete[]": "minecraft:red_concrete[]", + "minecraft:black_concrete[]": "minecraft:black_concrete[]", + "minecraft:white_concrete_powder[]": "minecraft:white_concrete_powder[]", + "minecraft:orange_concrete_powder[]": "minecraft:orange_concrete_powder[]", + "minecraft:magenta_concrete_powder[]": "minecraft:magenta_concrete_powder[]", + "minecraft:light_blue_concrete_powder[]": "minecraft:light_blue_concrete_powder[]", + "minecraft:yellow_concrete_powder[]": "minecraft:yellow_concrete_powder[]", + "minecraft:lime_concrete_powder[]": "minecraft:lime_concrete_powder[]", + "minecraft:pink_concrete_powder[]": "minecraft:pink_concrete_powder[]", + "minecraft:gray_concrete_powder[]": "minecraft:gray_concrete_powder[]", + "minecraft:light_gray_concrete_powder[]": "minecraft:light_gray_concrete_powder[]", + "minecraft:cyan_concrete_powder[]": "minecraft:cyan_concrete_powder[]", + "minecraft:purple_concrete_powder[]": "minecraft:purple_concrete_powder[]", + "minecraft:blue_concrete_powder[]": "minecraft:blue_concrete_powder[]", + "minecraft:brown_concrete_powder[]": "minecraft:brown_concrete_powder[]", + "minecraft:green_concrete_powder[]": "minecraft:green_concrete_powder[]", + "minecraft:red_concrete_powder[]": "minecraft:red_concrete_powder[]", + "minecraft:black_concrete_powder[]": "minecraft:black_concrete_powder[]", + "minecraft:kelp[age=0]": "minecraft:kelp[kelp_age=0]", + "minecraft:kelp[age=1]": "minecraft:kelp[kelp_age=1]", + "minecraft:kelp[age=2]": "minecraft:kelp[kelp_age=2]", + "minecraft:kelp[age=3]": "minecraft:kelp[kelp_age=3]", + "minecraft:kelp[age=4]": "minecraft:kelp[kelp_age=4]", + "minecraft:kelp[age=5]": "minecraft:kelp[kelp_age=5]", + "minecraft:kelp[age=6]": "minecraft:kelp[kelp_age=6]", + "minecraft:kelp[age=7]": "minecraft:kelp[kelp_age=7]", + "minecraft:kelp[age=8]": "minecraft:kelp[kelp_age=8]", + "minecraft:kelp[age=9]": "minecraft:kelp[kelp_age=9]", + "minecraft:kelp[age=10]": "minecraft:kelp[kelp_age=10]", + "minecraft:kelp[age=11]": "minecraft:kelp[kelp_age=11]", + "minecraft:kelp[age=12]": "minecraft:kelp[kelp_age=12]", + "minecraft:kelp[age=13]": "minecraft:kelp[kelp_age=13]", + "minecraft:kelp[age=14]": "minecraft:kelp[kelp_age=14]", + "minecraft:kelp[age=15]": "minecraft:kelp[kelp_age=15]", + "minecraft:kelp[age=16]": "minecraft:kelp[kelp_age=16]", + "minecraft:kelp[age=17]": "minecraft:kelp[kelp_age=17]", + "minecraft:kelp[age=18]": "minecraft:kelp[kelp_age=18]", + "minecraft:kelp[age=19]": "minecraft:kelp[kelp_age=19]", + "minecraft:kelp[age=20]": "minecraft:kelp[kelp_age=20]", + "minecraft:kelp[age=21]": "minecraft:kelp[kelp_age=21]", + "minecraft:kelp[age=22]": "minecraft:kelp[kelp_age=22]", + "minecraft:kelp[age=23]": "minecraft:kelp[kelp_age=23]", + "minecraft:kelp[age=24]": "minecraft:kelp[kelp_age=24]", + "minecraft:kelp[age=25]": "minecraft:kelp[kelp_age=25]", + "minecraft:kelp_plant[]": "minecraft:kelp[kelp_age=0]", + "minecraft:dried_kelp_block[]": "minecraft:dried_kelp_block[]", + "minecraft:turtle_egg[eggs=1,hatch=0]": "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=one_egg]", + "minecraft:turtle_egg[eggs=1,hatch=1]": "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=one_egg]", + "minecraft:turtle_egg[eggs=1,hatch=2]": "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=one_egg]", + "minecraft:turtle_egg[eggs=2,hatch=0]": "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=two_egg]", + "minecraft:turtle_egg[eggs=2,hatch=1]": "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=two_egg]", + "minecraft:turtle_egg[eggs=2,hatch=2]": "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=two_egg]", + "minecraft:turtle_egg[eggs=3,hatch=0]": "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=three_egg]", + "minecraft:turtle_egg[eggs=3,hatch=1]": "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=three_egg]", + "minecraft:turtle_egg[eggs=3,hatch=2]": "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=three_egg]", + "minecraft:turtle_egg[eggs=4,hatch=0]": "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=four_egg]", + "minecraft:turtle_egg[eggs=4,hatch=1]": "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=four_egg]", + "minecraft:turtle_egg[eggs=4,hatch=2]": "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=four_egg]", + "minecraft:sniffer_egg[hatch=0]": "minecraft:sniffer_egg[cracked_state=no_cracks]", + "minecraft:sniffer_egg[hatch=1]": "minecraft:sniffer_egg[cracked_state=cracked]", + "minecraft:sniffer_egg[hatch=2]": "minecraft:sniffer_egg[cracked_state=max_cracked]", + "minecraft:dead_tube_coral_block[]": "minecraft:dead_tube_coral_block[]", + "minecraft:dead_brain_coral_block[]": "minecraft:dead_brain_coral_block[]", + "minecraft:dead_bubble_coral_block[]": "minecraft:dead_bubble_coral_block[]", + "minecraft:dead_fire_coral_block[]": "minecraft:dead_fire_coral_block[]", + "minecraft:dead_horn_coral_block[]": "minecraft:dead_horn_coral_block[]", + "minecraft:tube_coral_block[]": "minecraft:tube_coral_block[]", + "minecraft:brain_coral_block[]": "minecraft:brain_coral_block[]", + "minecraft:bubble_coral_block[]": "minecraft:bubble_coral_block[]", + "minecraft:fire_coral_block[]": "minecraft:fire_coral_block[]", + "minecraft:horn_coral_block[]": "minecraft:horn_coral_block[]", + "minecraft:dead_tube_coral[waterlogged=true]": "minecraft:dead_tube_coral[]", + "minecraft:dead_tube_coral[waterlogged=false]": "minecraft:dead_tube_coral[]", + "minecraft:dead_brain_coral[waterlogged=true]": "minecraft:dead_brain_coral[]", + "minecraft:dead_brain_coral[waterlogged=false]": "minecraft:dead_brain_coral[]", + "minecraft:dead_bubble_coral[waterlogged=true]": "minecraft:dead_bubble_coral[]", + "minecraft:dead_bubble_coral[waterlogged=false]": "minecraft:dead_bubble_coral[]", + "minecraft:dead_fire_coral[waterlogged=true]": "minecraft:dead_fire_coral[]", + "minecraft:dead_fire_coral[waterlogged=false]": "minecraft:dead_fire_coral[]", + "minecraft:dead_horn_coral[waterlogged=true]": "minecraft:dead_horn_coral[]", + "minecraft:dead_horn_coral[waterlogged=false]": "minecraft:dead_horn_coral[]", + "minecraft:tube_coral[waterlogged=true]": "minecraft:tube_coral[]", + "minecraft:tube_coral[waterlogged=false]": "minecraft:tube_coral[]", + "minecraft:brain_coral[waterlogged=true]": "minecraft:brain_coral[]", + "minecraft:brain_coral[waterlogged=false]": "minecraft:brain_coral[]", + "minecraft:bubble_coral[waterlogged=true]": "minecraft:bubble_coral[]", + "minecraft:bubble_coral[waterlogged=false]": "minecraft:bubble_coral[]", + "minecraft:fire_coral[waterlogged=true]": "minecraft:fire_coral[]", + "minecraft:fire_coral[waterlogged=false]": "minecraft:fire_coral[]", + "minecraft:horn_coral[waterlogged=true]": "minecraft:horn_coral[]", + "minecraft:horn_coral[waterlogged=false]": "minecraft:horn_coral[]", + "minecraft:dead_tube_coral_fan[waterlogged=true]": "minecraft:dead_tube_coral_fan[coral_fan_direction=0]", + "minecraft:dead_tube_coral_fan[waterlogged=false]": "minecraft:dead_tube_coral_fan[coral_fan_direction=0]", + "minecraft:dead_brain_coral_fan[waterlogged=true]": "minecraft:dead_brain_coral_fan[coral_fan_direction=0]", + "minecraft:dead_brain_coral_fan[waterlogged=false]": "minecraft:dead_brain_coral_fan[coral_fan_direction=0]", + "minecraft:dead_bubble_coral_fan[waterlogged=true]": "minecraft:dead_bubble_coral_fan[coral_fan_direction=0]", + "minecraft:dead_bubble_coral_fan[waterlogged=false]": "minecraft:dead_bubble_coral_fan[coral_fan_direction=0]", + "minecraft:dead_fire_coral_fan[waterlogged=true]": "minecraft:dead_fire_coral_fan[coral_fan_direction=0]", + "minecraft:dead_fire_coral_fan[waterlogged=false]": "minecraft:dead_fire_coral_fan[coral_fan_direction=0]", + "minecraft:dead_horn_coral_fan[waterlogged=true]": "minecraft:dead_horn_coral_fan[coral_fan_direction=0]", + "minecraft:dead_horn_coral_fan[waterlogged=false]": "minecraft:dead_horn_coral_fan[coral_fan_direction=0]", + "minecraft:tube_coral_fan[waterlogged=true]": "minecraft:tube_coral_fan[coral_fan_direction=0]", + "minecraft:tube_coral_fan[waterlogged=false]": "minecraft:tube_coral_fan[coral_fan_direction=0]", + "minecraft:brain_coral_fan[waterlogged=true]": "minecraft:brain_coral_fan[coral_fan_direction=0]", + "minecraft:brain_coral_fan[waterlogged=false]": "minecraft:brain_coral_fan[coral_fan_direction=0]", + "minecraft:bubble_coral_fan[waterlogged=true]": "minecraft:bubble_coral_fan[coral_fan_direction=0]", + "minecraft:bubble_coral_fan[waterlogged=false]": "minecraft:bubble_coral_fan[coral_fan_direction=0]", + "minecraft:fire_coral_fan[waterlogged=true]": "minecraft:fire_coral_fan[coral_fan_direction=0]", + "minecraft:fire_coral_fan[waterlogged=false]": "minecraft:fire_coral_fan[coral_fan_direction=0]", + "minecraft:horn_coral_fan[waterlogged=true]": "minecraft:horn_coral_fan[coral_fan_direction=0]", + "minecraft:horn_coral_fan[waterlogged=false]": "minecraft:horn_coral_fan[coral_fan_direction=0]", + "minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:dead_tube_coral_wall_fan[coral_direction=2]", + "minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:dead_tube_coral_wall_fan[coral_direction=2]", + "minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:dead_tube_coral_wall_fan[coral_direction=3]", + "minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:dead_tube_coral_wall_fan[coral_direction=3]", + "minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:dead_tube_coral_wall_fan[coral_direction=0]", + "minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:dead_tube_coral_wall_fan[coral_direction=0]", + "minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:dead_tube_coral_wall_fan[coral_direction=1]", + "minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:dead_tube_coral_wall_fan[coral_direction=1]", + "minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:dead_brain_coral_wall_fan[coral_direction=2]", + "minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:dead_brain_coral_wall_fan[coral_direction=2]", + "minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:dead_brain_coral_wall_fan[coral_direction=3]", + "minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:dead_brain_coral_wall_fan[coral_direction=3]", + "minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:dead_brain_coral_wall_fan[coral_direction=0]", + "minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:dead_brain_coral_wall_fan[coral_direction=0]", + "minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:dead_brain_coral_wall_fan[coral_direction=1]", + "minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:dead_brain_coral_wall_fan[coral_direction=1]", + "minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:dead_bubble_coral_wall_fan[coral_direction=2]", + "minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:dead_bubble_coral_wall_fan[coral_direction=2]", + "minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:dead_bubble_coral_wall_fan[coral_direction=3]", + "minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:dead_bubble_coral_wall_fan[coral_direction=3]", + "minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:dead_bubble_coral_wall_fan[coral_direction=0]", + "minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:dead_bubble_coral_wall_fan[coral_direction=0]", + "minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:dead_bubble_coral_wall_fan[coral_direction=1]", + "minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:dead_bubble_coral_wall_fan[coral_direction=1]", + "minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:dead_fire_coral_wall_fan[coral_direction=2]", + "minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:dead_fire_coral_wall_fan[coral_direction=2]", + "minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:dead_fire_coral_wall_fan[coral_direction=3]", + "minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:dead_fire_coral_wall_fan[coral_direction=3]", + "minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:dead_fire_coral_wall_fan[coral_direction=0]", + "minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:dead_fire_coral_wall_fan[coral_direction=0]", + "minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:dead_fire_coral_wall_fan[coral_direction=1]", + "minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:dead_fire_coral_wall_fan[coral_direction=1]", + "minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:dead_horn_coral_wall_fan[coral_direction=2]", + "minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:dead_horn_coral_wall_fan[coral_direction=2]", + "minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:dead_horn_coral_wall_fan[coral_direction=3]", + "minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:dead_horn_coral_wall_fan[coral_direction=3]", + "minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:dead_horn_coral_wall_fan[coral_direction=0]", + "minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:dead_horn_coral_wall_fan[coral_direction=0]", + "minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:dead_horn_coral_wall_fan[coral_direction=1]", + "minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:dead_horn_coral_wall_fan[coral_direction=1]", + "minecraft:tube_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:tube_coral_wall_fan[coral_direction=2]", + "minecraft:tube_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:tube_coral_wall_fan[coral_direction=2]", + "minecraft:tube_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:tube_coral_wall_fan[coral_direction=3]", + "minecraft:tube_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:tube_coral_wall_fan[coral_direction=3]", + "minecraft:tube_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:tube_coral_wall_fan[coral_direction=0]", + "minecraft:tube_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:tube_coral_wall_fan[coral_direction=0]", + "minecraft:tube_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:tube_coral_wall_fan[coral_direction=1]", + "minecraft:tube_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:tube_coral_wall_fan[coral_direction=1]", + "minecraft:brain_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:brain_coral_wall_fan[coral_direction=2]", + "minecraft:brain_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:brain_coral_wall_fan[coral_direction=2]", + "minecraft:brain_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:brain_coral_wall_fan[coral_direction=3]", + "minecraft:brain_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:brain_coral_wall_fan[coral_direction=3]", + "minecraft:brain_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:brain_coral_wall_fan[coral_direction=0]", + "minecraft:brain_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:brain_coral_wall_fan[coral_direction=0]", + "minecraft:brain_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:brain_coral_wall_fan[coral_direction=1]", + "minecraft:brain_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:brain_coral_wall_fan[coral_direction=1]", + "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:bubble_coral_wall_fan[coral_direction=2]", + "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:bubble_coral_wall_fan[coral_direction=2]", + "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:bubble_coral_wall_fan[coral_direction=3]", + "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:bubble_coral_wall_fan[coral_direction=3]", + "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:bubble_coral_wall_fan[coral_direction=0]", + "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:bubble_coral_wall_fan[coral_direction=0]", + "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:bubble_coral_wall_fan[coral_direction=1]", + "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:bubble_coral_wall_fan[coral_direction=1]", + "minecraft:fire_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:fire_coral_wall_fan[coral_direction=2]", + "minecraft:fire_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:fire_coral_wall_fan[coral_direction=2]", + "minecraft:fire_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:fire_coral_wall_fan[coral_direction=3]", + "minecraft:fire_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:fire_coral_wall_fan[coral_direction=3]", + "minecraft:fire_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:fire_coral_wall_fan[coral_direction=0]", + "minecraft:fire_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:fire_coral_wall_fan[coral_direction=0]", + "minecraft:fire_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:fire_coral_wall_fan[coral_direction=1]", + "minecraft:fire_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:fire_coral_wall_fan[coral_direction=1]", + "minecraft:horn_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:horn_coral_wall_fan[coral_direction=2]", + "minecraft:horn_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:horn_coral_wall_fan[coral_direction=2]", + "minecraft:horn_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:horn_coral_wall_fan[coral_direction=3]", + "minecraft:horn_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:horn_coral_wall_fan[coral_direction=3]", + "minecraft:horn_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:horn_coral_wall_fan[coral_direction=0]", + "minecraft:horn_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:horn_coral_wall_fan[coral_direction=0]", + "minecraft:horn_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:horn_coral_wall_fan[coral_direction=1]", + "minecraft:horn_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:horn_coral_wall_fan[coral_direction=1]", + "minecraft:sea_pickle[pickles=1,waterlogged=true]": "minecraft:sea_pickle[cluster_count=0,dead_bit=false]", + "minecraft:sea_pickle[pickles=1,waterlogged=false]": "minecraft:sea_pickle[cluster_count=0,dead_bit=true]", + "minecraft:sea_pickle[pickles=2,waterlogged=true]": "minecraft:sea_pickle[cluster_count=1,dead_bit=false]", + "minecraft:sea_pickle[pickles=2,waterlogged=false]": "minecraft:sea_pickle[cluster_count=1,dead_bit=true]", + "minecraft:sea_pickle[pickles=3,waterlogged=true]": "minecraft:sea_pickle[cluster_count=2,dead_bit=false]", + "minecraft:sea_pickle[pickles=3,waterlogged=false]": "minecraft:sea_pickle[cluster_count=2,dead_bit=true]", + "minecraft:sea_pickle[pickles=4,waterlogged=true]": "minecraft:sea_pickle[cluster_count=3,dead_bit=false]", + "minecraft:sea_pickle[pickles=4,waterlogged=false]": "minecraft:sea_pickle[cluster_count=3,dead_bit=true]", + "minecraft:blue_ice[]": "minecraft:blue_ice[]", + "minecraft:conduit[waterlogged=true]": "minecraft:conduit[]", + "minecraft:conduit[waterlogged=false]": "minecraft:conduit[]", + "minecraft:bamboo_sapling[]": "minecraft:bamboo_sapling[age_bit=false]", + "minecraft:bamboo[age=0,leaves=none,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=none,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=small,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=small,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=large,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=large,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=1,leaves=none,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=none,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=small,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=small,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=large,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=large,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thick]", + "minecraft:potted_bamboo[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:void_air[]": "minecraft:air[]", + "minecraft:cave_air[]": "minecraft:air[]", + "minecraft:bubble_column[drag=true]": "minecraft:bubble_column[drag_down=true]", + "minecraft:bubble_column[drag=false]": "minecraft:bubble_column[drag_down=false]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_slab[type=top,waterlogged=true]": "minecraft:polished_granite_slab[minecraft:vertical_half=top]", + "minecraft:polished_granite_slab[type=top,waterlogged=false]": "minecraft:polished_granite_slab[minecraft:vertical_half=top]", + "minecraft:polished_granite_slab[type=bottom,waterlogged=true]": "minecraft:polished_granite_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_granite_slab[type=bottom,waterlogged=false]": "minecraft:polished_granite_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_granite_slab[type=double,waterlogged=true]": "minecraft:polished_granite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_granite_slab[type=double,waterlogged=false]": "minecraft:polished_granite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=true]": "minecraft:smooth_red_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=false]": "minecraft:smooth_red_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:smooth_red_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:smooth_red_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=true]": "minecraft:smooth_red_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false]": "minecraft:smooth_red_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mossy_stone_brick_slab[type=top,waterlogged=true]": "minecraft:mossy_stone_brick_slab[minecraft:vertical_half=top]", + "minecraft:mossy_stone_brick_slab[type=top,waterlogged=false]": "minecraft:mossy_stone_brick_slab[minecraft:vertical_half=top]", + "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true]": "minecraft:mossy_stone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false]": "minecraft:mossy_stone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:mossy_stone_brick_slab[type=double,waterlogged=true]": "minecraft:mossy_stone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mossy_stone_brick_slab[type=double,waterlogged=false]": "minecraft:mossy_stone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_diorite_slab[type=top,waterlogged=true]": "minecraft:polished_diorite_slab[minecraft:vertical_half=top]", + "minecraft:polished_diorite_slab[type=top,waterlogged=false]": "minecraft:polished_diorite_slab[minecraft:vertical_half=top]", + "minecraft:polished_diorite_slab[type=bottom,waterlogged=true]": "minecraft:polished_diorite_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_diorite_slab[type=bottom,waterlogged=false]": "minecraft:polished_diorite_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_diorite_slab[type=double,waterlogged=true]": "minecraft:polished_diorite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_diorite_slab[type=double,waterlogged=false]": "minecraft:polished_diorite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mossy_cobblestone_slab[type=top,waterlogged=true]": "minecraft:mossy_cobblestone_slab[minecraft:vertical_half=top]", + "minecraft:mossy_cobblestone_slab[type=top,waterlogged=false]": "minecraft:mossy_cobblestone_slab[minecraft:vertical_half=top]", + "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=true]": "minecraft:mossy_cobblestone_slab[minecraft:vertical_half=bottom]", + "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false]": "minecraft:mossy_cobblestone_slab[minecraft:vertical_half=bottom]", + "minecraft:mossy_cobblestone_slab[type=double,waterlogged=true]": "minecraft:mossy_cobblestone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mossy_cobblestone_slab[type=double,waterlogged=false]": "minecraft:mossy_cobblestone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:end_stone_brick_slab[type=top,waterlogged=true]": "minecraft:end_stone_brick_slab[minecraft:vertical_half=top]", + "minecraft:end_stone_brick_slab[type=top,waterlogged=false]": "minecraft:end_stone_brick_slab[minecraft:vertical_half=top]", + "minecraft:end_stone_brick_slab[type=bottom,waterlogged=true]": "minecraft:end_stone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:end_stone_brick_slab[type=bottom,waterlogged=false]": "minecraft:end_stone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:end_stone_brick_slab[type=double,waterlogged=true]": "minecraft:end_stone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:end_stone_brick_slab[type=double,waterlogged=false]": "minecraft:end_stone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_sandstone_slab[type=top,waterlogged=true]": "minecraft:smooth_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:smooth_sandstone_slab[type=top,waterlogged=false]": "minecraft:smooth_sandstone_slab[minecraft:vertical_half=top]", + "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:smooth_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:smooth_sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_sandstone_slab[type=double,waterlogged=true]": "minecraft:smooth_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_sandstone_slab[type=double,waterlogged=false]": "minecraft:smooth_sandstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_quartz_slab[type=top,waterlogged=true]": "minecraft:smooth_quartz_slab[minecraft:vertical_half=top]", + "minecraft:smooth_quartz_slab[type=top,waterlogged=false]": "minecraft:smooth_quartz_slab[minecraft:vertical_half=top]", + "minecraft:smooth_quartz_slab[type=bottom,waterlogged=true]": "minecraft:smooth_quartz_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_quartz_slab[type=bottom,waterlogged=false]": "minecraft:smooth_quartz_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_quartz_slab[type=double,waterlogged=true]": "minecraft:smooth_quartz_double_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_quartz_slab[type=double,waterlogged=false]": "minecraft:smooth_quartz_double_slab[minecraft:vertical_half=bottom]", + "minecraft:granite_slab[type=top,waterlogged=true]": "minecraft:granite_slab[minecraft:vertical_half=top]", + "minecraft:granite_slab[type=top,waterlogged=false]": "minecraft:granite_slab[minecraft:vertical_half=top]", + "minecraft:granite_slab[type=bottom,waterlogged=true]": "minecraft:granite_slab[minecraft:vertical_half=bottom]", + "minecraft:granite_slab[type=bottom,waterlogged=false]": "minecraft:granite_slab[minecraft:vertical_half=bottom]", + "minecraft:granite_slab[type=double,waterlogged=true]": "minecraft:granite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:granite_slab[type=double,waterlogged=false]": "minecraft:granite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:andesite_slab[type=top,waterlogged=true]": "minecraft:andesite_slab[minecraft:vertical_half=top]", + "minecraft:andesite_slab[type=top,waterlogged=false]": "minecraft:andesite_slab[minecraft:vertical_half=top]", + "minecraft:andesite_slab[type=bottom,waterlogged=true]": "minecraft:andesite_slab[minecraft:vertical_half=bottom]", + "minecraft:andesite_slab[type=bottom,waterlogged=false]": "minecraft:andesite_slab[minecraft:vertical_half=bottom]", + "minecraft:andesite_slab[type=double,waterlogged=true]": "minecraft:andesite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:andesite_slab[type=double,waterlogged=false]": "minecraft:andesite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:red_nether_brick_slab[type=top,waterlogged=true]": "minecraft:red_nether_brick_slab[minecraft:vertical_half=top]", + "minecraft:red_nether_brick_slab[type=top,waterlogged=false]": "minecraft:red_nether_brick_slab[minecraft:vertical_half=top]", + "minecraft:red_nether_brick_slab[type=bottom,waterlogged=true]": "minecraft:red_nether_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:red_nether_brick_slab[type=bottom,waterlogged=false]": "minecraft:red_nether_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:red_nether_brick_slab[type=double,waterlogged=true]": "minecraft:red_nether_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:red_nether_brick_slab[type=double,waterlogged=false]": "minecraft:red_nether_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_andesite_slab[type=top,waterlogged=true]": "minecraft:polished_andesite_slab[minecraft:vertical_half=top]", + "minecraft:polished_andesite_slab[type=top,waterlogged=false]": "minecraft:polished_andesite_slab[minecraft:vertical_half=top]", + "minecraft:polished_andesite_slab[type=bottom,waterlogged=true]": "minecraft:polished_andesite_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_andesite_slab[type=bottom,waterlogged=false]": "minecraft:polished_andesite_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_andesite_slab[type=double,waterlogged=true]": "minecraft:polished_andesite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_andesite_slab[type=double,waterlogged=false]": "minecraft:polished_andesite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:diorite_slab[type=top,waterlogged=true]": "minecraft:diorite_slab[minecraft:vertical_half=top]", + "minecraft:diorite_slab[type=top,waterlogged=false]": "minecraft:diorite_slab[minecraft:vertical_half=top]", + "minecraft:diorite_slab[type=bottom,waterlogged=true]": "minecraft:diorite_slab[minecraft:vertical_half=bottom]", + "minecraft:diorite_slab[type=bottom,waterlogged=false]": "minecraft:diorite_slab[minecraft:vertical_half=bottom]", + "minecraft:diorite_slab[type=double,waterlogged=true]": "minecraft:diorite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:diorite_slab[type=double,waterlogged=false]": "minecraft:diorite_double_slab[minecraft:vertical_half=bottom]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:prismarine_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mossy_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:granite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:andesite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:red_nether_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:sandstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:end_stone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:diorite_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:scaffolding[bottom=true,distance=0,waterlogged=true]": "minecraft:scaffolding[stability=0,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=0,waterlogged=false]": "minecraft:scaffolding[stability=0,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=1,waterlogged=true]": "minecraft:scaffolding[stability=1,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=1,waterlogged=false]": "minecraft:scaffolding[stability=1,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=2,waterlogged=true]": "minecraft:scaffolding[stability=2,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=2,waterlogged=false]": "minecraft:scaffolding[stability=2,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=3,waterlogged=true]": "minecraft:scaffolding[stability=3,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=3,waterlogged=false]": "minecraft:scaffolding[stability=3,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=4,waterlogged=true]": "minecraft:scaffolding[stability=4,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=4,waterlogged=false]": "minecraft:scaffolding[stability=4,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=5,waterlogged=true]": "minecraft:scaffolding[stability=5,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=5,waterlogged=false]": "minecraft:scaffolding[stability=5,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=6,waterlogged=true]": "minecraft:scaffolding[stability=6,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=6,waterlogged=false]": "minecraft:scaffolding[stability=6,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=7,waterlogged=true]": "minecraft:scaffolding[stability=7,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=7,waterlogged=false]": "minecraft:scaffolding[stability=7,stability_check=false]", + "minecraft:scaffolding[bottom=false,distance=0,waterlogged=true]": "minecraft:scaffolding[stability=0,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=0,waterlogged=false]": "minecraft:scaffolding[stability=0,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=1,waterlogged=true]": "minecraft:scaffolding[stability=1,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=1,waterlogged=false]": "minecraft:scaffolding[stability=1,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=2,waterlogged=true]": "minecraft:scaffolding[stability=2,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=2,waterlogged=false]": "minecraft:scaffolding[stability=2,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=3,waterlogged=true]": "minecraft:scaffolding[stability=3,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=3,waterlogged=false]": "minecraft:scaffolding[stability=3,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=4,waterlogged=true]": "minecraft:scaffolding[stability=4,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=4,waterlogged=false]": "minecraft:scaffolding[stability=4,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=5,waterlogged=true]": "minecraft:scaffolding[stability=5,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=5,waterlogged=false]": "minecraft:scaffolding[stability=5,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=6,waterlogged=true]": "minecraft:scaffolding[stability=6,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=6,waterlogged=false]": "minecraft:scaffolding[stability=6,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=7,waterlogged=true]": "minecraft:scaffolding[stability=7,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=7,waterlogged=false]": "minecraft:scaffolding[stability=7,stability_check=true]", + "minecraft:loom[facing=north]": "minecraft:loom[direction=2]", + "minecraft:loom[facing=south]": "minecraft:loom[direction=0]", + "minecraft:loom[facing=west]": "minecraft:loom[direction=1]", + "minecraft:loom[facing=east]": "minecraft:loom[direction=3]", + "minecraft:barrel[facing=north,open=true]": "minecraft:barrel[facing_direction=2,open_bit=true]", + "minecraft:barrel[facing=north,open=false]": "minecraft:barrel[facing_direction=2,open_bit=false]", + "minecraft:barrel[facing=east,open=true]": "minecraft:barrel[facing_direction=5,open_bit=true]", + "minecraft:barrel[facing=east,open=false]": "minecraft:barrel[facing_direction=5,open_bit=false]", + "minecraft:barrel[facing=south,open=true]": "minecraft:barrel[facing_direction=3,open_bit=true]", + "minecraft:barrel[facing=south,open=false]": "minecraft:barrel[facing_direction=3,open_bit=false]", + "minecraft:barrel[facing=west,open=true]": "minecraft:barrel[facing_direction=4,open_bit=true]", + "minecraft:barrel[facing=west,open=false]": "minecraft:barrel[facing_direction=4,open_bit=false]", + "minecraft:barrel[facing=up,open=true]": "minecraft:barrel[facing_direction=1,open_bit=true]", + "minecraft:barrel[facing=up,open=false]": "minecraft:barrel[facing_direction=1,open_bit=false]", + "minecraft:barrel[facing=down,open=true]": "minecraft:barrel[facing_direction=0,open_bit=true]", + "minecraft:barrel[facing=down,open=false]": "minecraft:barrel[facing_direction=0,open_bit=false]", + "minecraft:smoker[facing=north,lit=true]": "minecraft:lit_smoker[minecraft:cardinal_direction=north]", + "minecraft:smoker[facing=north,lit=false]": "minecraft:smoker[minecraft:cardinal_direction=north]", + "minecraft:smoker[facing=south,lit=true]": "minecraft:lit_smoker[minecraft:cardinal_direction=south]", + "minecraft:smoker[facing=south,lit=false]": "minecraft:smoker[minecraft:cardinal_direction=south]", + "minecraft:smoker[facing=west,lit=true]": "minecraft:lit_smoker[minecraft:cardinal_direction=west]", + "minecraft:smoker[facing=west,lit=false]": "minecraft:smoker[minecraft:cardinal_direction=west]", + "minecraft:smoker[facing=east,lit=true]": "minecraft:lit_smoker[minecraft:cardinal_direction=east]", + "minecraft:smoker[facing=east,lit=false]": "minecraft:smoker[minecraft:cardinal_direction=east]", + "minecraft:blast_furnace[facing=north,lit=true]": "minecraft:lit_blast_furnace[minecraft:cardinal_direction=north]", + "minecraft:blast_furnace[facing=north,lit=false]": "minecraft:blast_furnace[minecraft:cardinal_direction=north]", + "minecraft:blast_furnace[facing=south,lit=true]": "minecraft:lit_blast_furnace[minecraft:cardinal_direction=south]", + "minecraft:blast_furnace[facing=south,lit=false]": "minecraft:blast_furnace[minecraft:cardinal_direction=south]", + "minecraft:blast_furnace[facing=west,lit=true]": "minecraft:lit_blast_furnace[minecraft:cardinal_direction=west]", + "minecraft:blast_furnace[facing=west,lit=false]": "minecraft:blast_furnace[minecraft:cardinal_direction=west]", + "minecraft:blast_furnace[facing=east,lit=true]": "minecraft:lit_blast_furnace[minecraft:cardinal_direction=east]", + "minecraft:blast_furnace[facing=east,lit=false]": "minecraft:blast_furnace[minecraft:cardinal_direction=east]", + "minecraft:cartography_table[]": "minecraft:cartography_table[]", + "minecraft:fletching_table[]": "minecraft:fletching_table[]", + "minecraft:grindstone[face=floor,facing=north]": "minecraft:grindstone[attachment=standing,direction=2]", + "minecraft:grindstone[face=floor,facing=south]": "minecraft:grindstone[attachment=standing,direction=0]", + "minecraft:grindstone[face=floor,facing=west]": "minecraft:grindstone[attachment=standing,direction=1]", + "minecraft:grindstone[face=floor,facing=east]": "minecraft:grindstone[attachment=standing,direction=3]", + "minecraft:grindstone[face=wall,facing=north]": "minecraft:grindstone[attachment=side,direction=2]", + "minecraft:grindstone[face=wall,facing=south]": "minecraft:grindstone[attachment=side,direction=0]", + "minecraft:grindstone[face=wall,facing=west]": "minecraft:grindstone[attachment=side,direction=1]", + "minecraft:grindstone[face=wall,facing=east]": "minecraft:grindstone[attachment=side,direction=3]", + "minecraft:grindstone[face=ceiling,facing=north]": "minecraft:grindstone[attachment=hanging,direction=2]", + "minecraft:grindstone[face=ceiling,facing=south]": "minecraft:grindstone[attachment=hanging,direction=0]", + "minecraft:grindstone[face=ceiling,facing=west]": "minecraft:grindstone[attachment=hanging,direction=1]", + "minecraft:grindstone[face=ceiling,facing=east]": "minecraft:grindstone[attachment=hanging,direction=3]", + "minecraft:lectern[facing=north,has_book=true,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=true]", + "minecraft:lectern[facing=north,has_book=true,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=false]", + "minecraft:lectern[facing=north,has_book=false,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=true]", + "minecraft:lectern[facing=north,has_book=false,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=false]", + "minecraft:lectern[facing=south,has_book=true,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=true]", + "minecraft:lectern[facing=south,has_book=true,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=false]", + "minecraft:lectern[facing=south,has_book=false,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=true]", + "minecraft:lectern[facing=south,has_book=false,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=false]", + "minecraft:lectern[facing=west,has_book=true,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=true]", + "minecraft:lectern[facing=west,has_book=true,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=false]", + "minecraft:lectern[facing=west,has_book=false,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=true]", + "minecraft:lectern[facing=west,has_book=false,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=false]", + "minecraft:lectern[facing=east,has_book=true,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=true]", + "minecraft:lectern[facing=east,has_book=true,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=false]", + "minecraft:lectern[facing=east,has_book=false,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=true]", + "minecraft:lectern[facing=east,has_book=false,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=false]", + "minecraft:smithing_table[]": "minecraft:smithing_table[]", + "minecraft:stonecutter[facing=north]": "minecraft:stonecutter_block[minecraft:cardinal_direction=north]", + "minecraft:stonecutter[facing=south]": "minecraft:stonecutter_block[minecraft:cardinal_direction=south]", + "minecraft:stonecutter[facing=west]": "minecraft:stonecutter_block[minecraft:cardinal_direction=west]", + "minecraft:stonecutter[facing=east]": "minecraft:stonecutter_block[minecraft:cardinal_direction=east]", + "minecraft:bell[attachment=floor,facing=north,powered=true]": "minecraft:bell[attachment=standing,direction=0,toggle_bit=true]", + "minecraft:bell[attachment=floor,facing=north,powered=false]": "minecraft:bell[attachment=standing,direction=0,toggle_bit=false]", + "minecraft:bell[attachment=floor,facing=south,powered=true]": "minecraft:bell[attachment=standing,direction=2,toggle_bit=true]", + "minecraft:bell[attachment=floor,facing=south,powered=false]": "minecraft:bell[attachment=standing,direction=2,toggle_bit=false]", + "minecraft:bell[attachment=floor,facing=west,powered=true]": "minecraft:bell[attachment=standing,direction=3,toggle_bit=true]", + "minecraft:bell[attachment=floor,facing=west,powered=false]": "minecraft:bell[attachment=standing,direction=3,toggle_bit=false]", + "minecraft:bell[attachment=floor,facing=east,powered=true]": "minecraft:bell[attachment=standing,direction=1,toggle_bit=true]", + "minecraft:bell[attachment=floor,facing=east,powered=false]": "minecraft:bell[attachment=standing,direction=1,toggle_bit=false]", + "minecraft:bell[attachment=ceiling,facing=north,powered=true]": "minecraft:bell[attachment=hanging,direction=0,toggle_bit=true]", + "minecraft:bell[attachment=ceiling,facing=north,powered=false]": "minecraft:bell[attachment=hanging,direction=0,toggle_bit=false]", + "minecraft:bell[attachment=ceiling,facing=south,powered=true]": "minecraft:bell[attachment=hanging,direction=2,toggle_bit=true]", + "minecraft:bell[attachment=ceiling,facing=south,powered=false]": "minecraft:bell[attachment=hanging,direction=2,toggle_bit=false]", + "minecraft:bell[attachment=ceiling,facing=west,powered=true]": "minecraft:bell[attachment=hanging,direction=3,toggle_bit=true]", + "minecraft:bell[attachment=ceiling,facing=west,powered=false]": "minecraft:bell[attachment=hanging,direction=3,toggle_bit=false]", + "minecraft:bell[attachment=ceiling,facing=east,powered=true]": "minecraft:bell[attachment=hanging,direction=1,toggle_bit=true]", + "minecraft:bell[attachment=ceiling,facing=east,powered=false]": "minecraft:bell[attachment=hanging,direction=1,toggle_bit=false]", + "minecraft:bell[attachment=single_wall,facing=north,powered=true]": "minecraft:bell[attachment=side,direction=0,toggle_bit=true]", + "minecraft:bell[attachment=single_wall,facing=north,powered=false]": "minecraft:bell[attachment=side,direction=0,toggle_bit=false]", + "minecraft:bell[attachment=single_wall,facing=south,powered=true]": "minecraft:bell[attachment=side,direction=2,toggle_bit=true]", + "minecraft:bell[attachment=single_wall,facing=south,powered=false]": "minecraft:bell[attachment=side,direction=2,toggle_bit=false]", + "minecraft:bell[attachment=single_wall,facing=west,powered=true]": "minecraft:bell[attachment=side,direction=3,toggle_bit=true]", + "minecraft:bell[attachment=single_wall,facing=west,powered=false]": "minecraft:bell[attachment=side,direction=3,toggle_bit=false]", + "minecraft:bell[attachment=single_wall,facing=east,powered=true]": "minecraft:bell[attachment=side,direction=1,toggle_bit=true]", + "minecraft:bell[attachment=single_wall,facing=east,powered=false]": "minecraft:bell[attachment=side,direction=1,toggle_bit=false]", + "minecraft:bell[attachment=double_wall,facing=north,powered=true]": "minecraft:bell[attachment=multiple,direction=0,toggle_bit=true]", + "minecraft:bell[attachment=double_wall,facing=north,powered=false]": "minecraft:bell[attachment=multiple,direction=0,toggle_bit=false]", + "minecraft:bell[attachment=double_wall,facing=south,powered=true]": "minecraft:bell[attachment=multiple,direction=2,toggle_bit=true]", + "minecraft:bell[attachment=double_wall,facing=south,powered=false]": "minecraft:bell[attachment=multiple,direction=2,toggle_bit=false]", + "minecraft:bell[attachment=double_wall,facing=west,powered=true]": "minecraft:bell[attachment=multiple,direction=3,toggle_bit=true]", + "minecraft:bell[attachment=double_wall,facing=west,powered=false]": "minecraft:bell[attachment=multiple,direction=3,toggle_bit=false]", + "minecraft:bell[attachment=double_wall,facing=east,powered=true]": "minecraft:bell[attachment=multiple,direction=1,toggle_bit=true]", + "minecraft:bell[attachment=double_wall,facing=east,powered=false]": "minecraft:bell[attachment=multiple,direction=1,toggle_bit=false]", + "minecraft:lantern[hanging=true,waterlogged=true]": "minecraft:lantern[hanging=true]", + "minecraft:lantern[hanging=true,waterlogged=false]": "minecraft:lantern[hanging=true]", + "minecraft:lantern[hanging=false,waterlogged=true]": "minecraft:lantern[hanging=false]", + "minecraft:lantern[hanging=false,waterlogged=false]": "minecraft:lantern[hanging=false]", + "minecraft:soul_lantern[hanging=true,waterlogged=true]": "minecraft:soul_lantern[hanging=true]", + "minecraft:soul_lantern[hanging=true,waterlogged=false]": "minecraft:soul_lantern[hanging=true]", + "minecraft:soul_lantern[hanging=false,waterlogged=true]": "minecraft:soul_lantern[hanging=false]", + "minecraft:soul_lantern[hanging=false,waterlogged=false]": "minecraft:soul_lantern[hanging=false]", + "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:sweet_berry_bush[age=0]": "minecraft:sweet_berry_bush[growth=0]", + "minecraft:sweet_berry_bush[age=1]": "minecraft:sweet_berry_bush[growth=1]", + "minecraft:sweet_berry_bush[age=2]": "minecraft:sweet_berry_bush[growth=2]", + "minecraft:sweet_berry_bush[age=3]": "minecraft:sweet_berry_bush[growth=3]", + "minecraft:warped_stem[axis=x]": "minecraft:warped_stem[pillar_axis=x]", + "minecraft:warped_stem[axis=y]": "minecraft:warped_stem[pillar_axis=y]", + "minecraft:warped_stem[axis=z]": "minecraft:warped_stem[pillar_axis=z]", + "minecraft:stripped_warped_stem[axis=x]": "minecraft:stripped_warped_stem[pillar_axis=x]", + "minecraft:stripped_warped_stem[axis=y]": "minecraft:stripped_warped_stem[pillar_axis=y]", + "minecraft:stripped_warped_stem[axis=z]": "minecraft:stripped_warped_stem[pillar_axis=z]", + "minecraft:warped_hyphae[axis=x]": "minecraft:warped_hyphae[pillar_axis=x]", + "minecraft:warped_hyphae[axis=y]": "minecraft:warped_hyphae[pillar_axis=y]", + "minecraft:warped_hyphae[axis=z]": "minecraft:warped_hyphae[pillar_axis=z]", + "minecraft:stripped_warped_hyphae[axis=x]": "minecraft:stripped_warped_hyphae[pillar_axis=x]", + "minecraft:stripped_warped_hyphae[axis=y]": "minecraft:stripped_warped_hyphae[pillar_axis=y]", + "minecraft:stripped_warped_hyphae[axis=z]": "minecraft:stripped_warped_hyphae[pillar_axis=z]", + "minecraft:warped_nylium[]": "minecraft:warped_nylium[]", + "minecraft:warped_fungus[]": "minecraft:warped_fungus[]", + "minecraft:warped_wart_block[]": "minecraft:warped_wart_block[]", + "minecraft:warped_roots[]": "minecraft:warped_roots[]", + "minecraft:nether_sprouts[]": "minecraft:nether_sprouts[]", + "minecraft:crimson_stem[axis=x]": "minecraft:crimson_stem[pillar_axis=x]", + "minecraft:crimson_stem[axis=y]": "minecraft:crimson_stem[pillar_axis=y]", + "minecraft:crimson_stem[axis=z]": "minecraft:crimson_stem[pillar_axis=z]", + "minecraft:stripped_crimson_stem[axis=x]": "minecraft:stripped_crimson_stem[pillar_axis=x]", + "minecraft:stripped_crimson_stem[axis=y]": "minecraft:stripped_crimson_stem[pillar_axis=y]", + "minecraft:stripped_crimson_stem[axis=z]": "minecraft:stripped_crimson_stem[pillar_axis=z]", + "minecraft:crimson_hyphae[axis=x]": "minecraft:crimson_hyphae[pillar_axis=x]", + "minecraft:crimson_hyphae[axis=y]": "minecraft:crimson_hyphae[pillar_axis=y]", + "minecraft:crimson_hyphae[axis=z]": "minecraft:crimson_hyphae[pillar_axis=z]", + "minecraft:stripped_crimson_hyphae[axis=x]": "minecraft:stripped_crimson_hyphae[pillar_axis=x]", + "minecraft:stripped_crimson_hyphae[axis=y]": "minecraft:stripped_crimson_hyphae[pillar_axis=y]", + "minecraft:stripped_crimson_hyphae[axis=z]": "minecraft:stripped_crimson_hyphae[pillar_axis=z]", + "minecraft:crimson_nylium[]": "minecraft:crimson_nylium[]", + "minecraft:crimson_fungus[]": "minecraft:crimson_fungus[]", + "minecraft:shroomlight[]": "minecraft:shroomlight[]", + "minecraft:weeping_vines[age=0]": "minecraft:weeping_vines[weeping_vines_age=0]", + "minecraft:weeping_vines[age=1]": "minecraft:weeping_vines[weeping_vines_age=1]", + "minecraft:weeping_vines[age=2]": "minecraft:weeping_vines[weeping_vines_age=2]", + "minecraft:weeping_vines[age=3]": "minecraft:weeping_vines[weeping_vines_age=3]", + "minecraft:weeping_vines[age=4]": "minecraft:weeping_vines[weeping_vines_age=4]", + "minecraft:weeping_vines[age=5]": "minecraft:weeping_vines[weeping_vines_age=5]", + "minecraft:weeping_vines[age=6]": "minecraft:weeping_vines[weeping_vines_age=6]", + "minecraft:weeping_vines[age=7]": "minecraft:weeping_vines[weeping_vines_age=7]", + "minecraft:weeping_vines[age=8]": "minecraft:weeping_vines[weeping_vines_age=8]", + "minecraft:weeping_vines[age=9]": "minecraft:weeping_vines[weeping_vines_age=9]", + "minecraft:weeping_vines[age=10]": "minecraft:weeping_vines[weeping_vines_age=10]", + "minecraft:weeping_vines[age=11]": "minecraft:weeping_vines[weeping_vines_age=11]", + "minecraft:weeping_vines[age=12]": "minecraft:weeping_vines[weeping_vines_age=12]", + "minecraft:weeping_vines[age=13]": "minecraft:weeping_vines[weeping_vines_age=13]", + "minecraft:weeping_vines[age=14]": "minecraft:weeping_vines[weeping_vines_age=14]", + "minecraft:weeping_vines[age=15]": "minecraft:weeping_vines[weeping_vines_age=15]", + "minecraft:weeping_vines[age=16]": "minecraft:weeping_vines[weeping_vines_age=16]", + "minecraft:weeping_vines[age=17]": "minecraft:weeping_vines[weeping_vines_age=17]", + "minecraft:weeping_vines[age=18]": "minecraft:weeping_vines[weeping_vines_age=18]", + "minecraft:weeping_vines[age=19]": "minecraft:weeping_vines[weeping_vines_age=19]", + "minecraft:weeping_vines[age=20]": "minecraft:weeping_vines[weeping_vines_age=20]", + "minecraft:weeping_vines[age=21]": "minecraft:weeping_vines[weeping_vines_age=21]", + "minecraft:weeping_vines[age=22]": "minecraft:weeping_vines[weeping_vines_age=22]", + "minecraft:weeping_vines[age=23]": "minecraft:weeping_vines[weeping_vines_age=23]", + "minecraft:weeping_vines[age=24]": "minecraft:weeping_vines[weeping_vines_age=24]", + "minecraft:weeping_vines[age=25]": "minecraft:weeping_vines[weeping_vines_age=25]", + "minecraft:weeping_vines_plant[]": "minecraft:weeping_vines[weeping_vines_age=0]", + "minecraft:twisting_vines[age=0]": "minecraft:twisting_vines[twisting_vines_age=0]", + "minecraft:twisting_vines[age=1]": "minecraft:twisting_vines[twisting_vines_age=1]", + "minecraft:twisting_vines[age=2]": "minecraft:twisting_vines[twisting_vines_age=2]", + "minecraft:twisting_vines[age=3]": "minecraft:twisting_vines[twisting_vines_age=3]", + "minecraft:twisting_vines[age=4]": "minecraft:twisting_vines[twisting_vines_age=4]", + "minecraft:twisting_vines[age=5]": "minecraft:twisting_vines[twisting_vines_age=5]", + "minecraft:twisting_vines[age=6]": "minecraft:twisting_vines[twisting_vines_age=6]", + "minecraft:twisting_vines[age=7]": "minecraft:twisting_vines[twisting_vines_age=7]", + "minecraft:twisting_vines[age=8]": "minecraft:twisting_vines[twisting_vines_age=8]", + "minecraft:twisting_vines[age=9]": "minecraft:twisting_vines[twisting_vines_age=9]", + "minecraft:twisting_vines[age=10]": "minecraft:twisting_vines[twisting_vines_age=10]", + "minecraft:twisting_vines[age=11]": "minecraft:twisting_vines[twisting_vines_age=11]", + "minecraft:twisting_vines[age=12]": "minecraft:twisting_vines[twisting_vines_age=12]", + "minecraft:twisting_vines[age=13]": "minecraft:twisting_vines[twisting_vines_age=13]", + "minecraft:twisting_vines[age=14]": "minecraft:twisting_vines[twisting_vines_age=14]", + "minecraft:twisting_vines[age=15]": "minecraft:twisting_vines[twisting_vines_age=15]", + "minecraft:twisting_vines[age=16]": "minecraft:twisting_vines[twisting_vines_age=16]", + "minecraft:twisting_vines[age=17]": "minecraft:twisting_vines[twisting_vines_age=17]", + "minecraft:twisting_vines[age=18]": "minecraft:twisting_vines[twisting_vines_age=18]", + "minecraft:twisting_vines[age=19]": "minecraft:twisting_vines[twisting_vines_age=19]", + "minecraft:twisting_vines[age=20]": "minecraft:twisting_vines[twisting_vines_age=20]", + "minecraft:twisting_vines[age=21]": "minecraft:twisting_vines[twisting_vines_age=21]", + "minecraft:twisting_vines[age=22]": "minecraft:twisting_vines[twisting_vines_age=22]", + "minecraft:twisting_vines[age=23]": "minecraft:twisting_vines[twisting_vines_age=23]", + "minecraft:twisting_vines[age=24]": "minecraft:twisting_vines[twisting_vines_age=24]", + "minecraft:twisting_vines[age=25]": "minecraft:twisting_vines[twisting_vines_age=25]", + "minecraft:twisting_vines_plant[]": "minecraft:twisting_vines[twisting_vines_age=0]", + "minecraft:crimson_roots[]": "minecraft:crimson_roots[]", + "minecraft:crimson_planks[]": "minecraft:crimson_planks[]", + "minecraft:warped_planks[]": "minecraft:warped_planks[]", + "minecraft:crimson_slab[type=top,waterlogged=true]": "minecraft:crimson_slab[minecraft:vertical_half=top]", + "minecraft:crimson_slab[type=top,waterlogged=false]": "minecraft:crimson_slab[minecraft:vertical_half=top]", + "minecraft:crimson_slab[type=bottom,waterlogged=true]": "minecraft:crimson_slab[minecraft:vertical_half=bottom]", + "minecraft:crimson_slab[type=bottom,waterlogged=false]": "minecraft:crimson_slab[minecraft:vertical_half=bottom]", + "minecraft:crimson_slab[type=double,waterlogged=true]": "minecraft:crimson_double_slab[minecraft:vertical_half=bottom]", + "minecraft:crimson_slab[type=double,waterlogged=false]": "minecraft:crimson_double_slab[minecraft:vertical_half=bottom]", + "minecraft:warped_slab[type=top,waterlogged=true]": "minecraft:warped_slab[minecraft:vertical_half=top]", + "minecraft:warped_slab[type=top,waterlogged=false]": "minecraft:warped_slab[minecraft:vertical_half=top]", + "minecraft:warped_slab[type=bottom,waterlogged=true]": "minecraft:warped_slab[minecraft:vertical_half=bottom]", + "minecraft:warped_slab[type=bottom,waterlogged=false]": "minecraft:warped_slab[minecraft:vertical_half=bottom]", + "minecraft:warped_slab[type=double,waterlogged=true]": "minecraft:warped_double_slab[minecraft:vertical_half=bottom]", + "minecraft:warped_slab[type=double,waterlogged=false]": "minecraft:warped_double_slab[minecraft:vertical_half=bottom]", + "minecraft:crimson_pressure_plate[powered=true]": "minecraft:crimson_pressure_plate[redstone_signal=15]", + "minecraft:crimson_pressure_plate[powered=false]": "minecraft:crimson_pressure_plate[redstone_signal=0]", + "minecraft:warped_pressure_plate[powered=true]": "minecraft:warped_pressure_plate[redstone_signal=15]", + "minecraft:warped_pressure_plate[powered=false]": "minecraft:warped_pressure_plate[redstone_signal=0]", + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:crimson_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=true]", + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=north,open_bit=false]", + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=true]", + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=south,open_bit=false]", + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=true]", + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=west,open_bit=false]", + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=true,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=true]", + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:warped_fence_gate[in_wall_bit=false,minecraft:cardinal_direction=east,open_bit=false]", + "minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_button[face=floor,facing=north,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=north,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=south,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=south,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=west,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=west,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=east,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=east,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:crimson_button[face=wall,facing=north,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:crimson_button[face=wall,facing=north,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:crimson_button[face=wall,facing=south,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:crimson_button[face=wall,facing=south,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:crimson_button[face=wall,facing=west,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:crimson_button[face=wall,facing=west,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:crimson_button[face=wall,facing=east,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:crimson_button[face=wall,facing=east,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:crimson_button[face=ceiling,facing=north,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=north,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=south,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=south,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=west,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=west,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=east,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=east,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:warped_button[face=floor,facing=north,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=north,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=south,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=south,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=west,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=west,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=east,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=east,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:warped_button[face=wall,facing=north,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:warped_button[face=wall,facing=north,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:warped_button[face=wall,facing=south,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:warped_button[face=wall,facing=south,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:warped_button[face=wall,facing=west,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:warped_button[face=wall,facing=west,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:warped_button[face=wall,facing=east,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:warped_button[face=wall,facing=east,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:warped_button[face=ceiling,facing=north,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=north,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=south,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=south,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=west,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=west,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=east,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=east,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:crimson_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:warped_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_sign[rotation=0,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=0]", + "minecraft:crimson_sign[rotation=0,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=0]", + "minecraft:crimson_sign[rotation=1,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=1]", + "minecraft:crimson_sign[rotation=1,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=1]", + "minecraft:crimson_sign[rotation=2,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=2]", + "minecraft:crimson_sign[rotation=2,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=2]", + "minecraft:crimson_sign[rotation=3,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=3]", + "minecraft:crimson_sign[rotation=3,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=3]", + "minecraft:crimson_sign[rotation=4,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=4]", + "minecraft:crimson_sign[rotation=4,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=4]", + "minecraft:crimson_sign[rotation=5,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=5]", + "minecraft:crimson_sign[rotation=5,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=5]", + "minecraft:crimson_sign[rotation=6,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=6]", + "minecraft:crimson_sign[rotation=6,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=6]", + "minecraft:crimson_sign[rotation=7,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=7]", + "minecraft:crimson_sign[rotation=7,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=7]", + "minecraft:crimson_sign[rotation=8,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=8]", + "minecraft:crimson_sign[rotation=8,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=8]", + "minecraft:crimson_sign[rotation=9,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=9]", + "minecraft:crimson_sign[rotation=9,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=9]", + "minecraft:crimson_sign[rotation=10,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=10]", + "minecraft:crimson_sign[rotation=10,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=10]", + "minecraft:crimson_sign[rotation=11,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=11]", + "minecraft:crimson_sign[rotation=11,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=11]", + "minecraft:crimson_sign[rotation=12,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=12]", + "minecraft:crimson_sign[rotation=12,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=12]", + "minecraft:crimson_sign[rotation=13,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=13]", + "minecraft:crimson_sign[rotation=13,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=13]", + "minecraft:crimson_sign[rotation=14,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=14]", + "minecraft:crimson_sign[rotation=14,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=14]", + "minecraft:crimson_sign[rotation=15,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=15]", + "minecraft:crimson_sign[rotation=15,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=15]", + "minecraft:warped_sign[rotation=0,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=0]", + "minecraft:warped_sign[rotation=0,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=0]", + "minecraft:warped_sign[rotation=1,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=1]", + "minecraft:warped_sign[rotation=1,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=1]", + "minecraft:warped_sign[rotation=2,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=2]", + "minecraft:warped_sign[rotation=2,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=2]", + "minecraft:warped_sign[rotation=3,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=3]", + "minecraft:warped_sign[rotation=3,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=3]", + "minecraft:warped_sign[rotation=4,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=4]", + "minecraft:warped_sign[rotation=4,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=4]", + "minecraft:warped_sign[rotation=5,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=5]", + "minecraft:warped_sign[rotation=5,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=5]", + "minecraft:warped_sign[rotation=6,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=6]", + "minecraft:warped_sign[rotation=6,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=6]", + "minecraft:warped_sign[rotation=7,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=7]", + "minecraft:warped_sign[rotation=7,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=7]", + "minecraft:warped_sign[rotation=8,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=8]", + "minecraft:warped_sign[rotation=8,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=8]", + "minecraft:warped_sign[rotation=9,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=9]", + "minecraft:warped_sign[rotation=9,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=9]", + "minecraft:warped_sign[rotation=10,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=10]", + "minecraft:warped_sign[rotation=10,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=10]", + "minecraft:warped_sign[rotation=11,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=11]", + "minecraft:warped_sign[rotation=11,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=11]", + "minecraft:warped_sign[rotation=12,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=12]", + "minecraft:warped_sign[rotation=12,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=12]", + "minecraft:warped_sign[rotation=13,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=13]", + "minecraft:warped_sign[rotation=13,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=13]", + "minecraft:warped_sign[rotation=14,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=14]", + "minecraft:warped_sign[rotation=14,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=14]", + "minecraft:warped_sign[rotation=15,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=15]", + "minecraft:warped_sign[rotation=15,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=15]", + "minecraft:crimson_wall_sign[facing=north,waterlogged=true]": "minecraft:crimson_wall_sign[facing_direction=2]", + "minecraft:crimson_wall_sign[facing=north,waterlogged=false]": "minecraft:crimson_wall_sign[facing_direction=2]", + "minecraft:crimson_wall_sign[facing=south,waterlogged=true]": "minecraft:crimson_wall_sign[facing_direction=3]", + "minecraft:crimson_wall_sign[facing=south,waterlogged=false]": "minecraft:crimson_wall_sign[facing_direction=3]", + "minecraft:crimson_wall_sign[facing=west,waterlogged=true]": "minecraft:crimson_wall_sign[facing_direction=4]", + "minecraft:crimson_wall_sign[facing=west,waterlogged=false]": "minecraft:crimson_wall_sign[facing_direction=4]", + "minecraft:crimson_wall_sign[facing=east,waterlogged=true]": "minecraft:crimson_wall_sign[facing_direction=5]", + "minecraft:crimson_wall_sign[facing=east,waterlogged=false]": "minecraft:crimson_wall_sign[facing_direction=5]", + "minecraft:warped_wall_sign[facing=north,waterlogged=true]": "minecraft:warped_wall_sign[facing_direction=2]", + "minecraft:warped_wall_sign[facing=north,waterlogged=false]": "minecraft:warped_wall_sign[facing_direction=2]", + "minecraft:warped_wall_sign[facing=south,waterlogged=true]": "minecraft:warped_wall_sign[facing_direction=3]", + "minecraft:warped_wall_sign[facing=south,waterlogged=false]": "minecraft:warped_wall_sign[facing_direction=3]", + "minecraft:warped_wall_sign[facing=west,waterlogged=true]": "minecraft:warped_wall_sign[facing_direction=4]", + "minecraft:warped_wall_sign[facing=west,waterlogged=false]": "minecraft:warped_wall_sign[facing_direction=4]", + "minecraft:warped_wall_sign[facing=east,waterlogged=true]": "minecraft:warped_wall_sign[facing_direction=5]", + "minecraft:warped_wall_sign[facing=east,waterlogged=false]": "minecraft:warped_wall_sign[facing_direction=5]", + "minecraft:structure_block[mode=save]": "minecraft:structure_block[structure_block_type=save]", + "minecraft:structure_block[mode=load]": "minecraft:structure_block[structure_block_type=load]", + "minecraft:structure_block[mode=corner]": "minecraft:structure_block[structure_block_type=corner]", + "minecraft:structure_block[mode=data]": "minecraft:structure_block[structure_block_type=data]", + "minecraft:jigsaw[orientation=down_east]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=down_north]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=down_south]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=down_west]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=up_east]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=up_north]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=up_south]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=up_west]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=west_up]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=east_up]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=north_up]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=south_up]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:test_block[mode=start]": "minecraft:unknown[]", + "minecraft:test_block[mode=log]": "minecraft:unknown[]", + "minecraft:test_block[mode=fail]": "minecraft:unknown[]", + "minecraft:test_block[mode=accept]": "minecraft:unknown[]", + "minecraft:test_instance_block[]": "minecraft:unknown[]", + "minecraft:composter[level=0]": "minecraft:composter[composter_fill_level=0]", + "minecraft:composter[level=1]": "minecraft:composter[composter_fill_level=1]", + "minecraft:composter[level=2]": "minecraft:composter[composter_fill_level=2]", + "minecraft:composter[level=3]": "minecraft:composter[composter_fill_level=3]", + "minecraft:composter[level=4]": "minecraft:composter[composter_fill_level=4]", + "minecraft:composter[level=5]": "minecraft:composter[composter_fill_level=5]", + "minecraft:composter[level=6]": "minecraft:composter[composter_fill_level=6]", + "minecraft:composter[level=7]": "minecraft:composter[composter_fill_level=7]", + "minecraft:composter[level=8]": "minecraft:composter[composter_fill_level=8]", + "minecraft:target[power=0]": "minecraft:target[]", + "minecraft:target[power=1]": "minecraft:target[]", + "minecraft:target[power=2]": "minecraft:target[]", + "minecraft:target[power=3]": "minecraft:target[]", + "minecraft:target[power=4]": "minecraft:target[]", + "minecraft:target[power=5]": "minecraft:target[]", + "minecraft:target[power=6]": "minecraft:target[]", + "minecraft:target[power=7]": "minecraft:target[]", + "minecraft:target[power=8]": "minecraft:target[]", + "minecraft:target[power=9]": "minecraft:target[]", + "minecraft:target[power=10]": "minecraft:target[]", + "minecraft:target[power=11]": "minecraft:target[]", + "minecraft:target[power=12]": "minecraft:target[]", + "minecraft:target[power=13]": "minecraft:target[]", + "minecraft:target[power=14]": "minecraft:target[]", + "minecraft:target[power=15]": "minecraft:target[]", + "minecraft:bee_nest[facing=north,honey_level=0]": "minecraft:bee_nest[direction=2,honey_level=0]", + "minecraft:bee_nest[facing=north,honey_level=1]": "minecraft:bee_nest[direction=2,honey_level=1]", + "minecraft:bee_nest[facing=north,honey_level=2]": "minecraft:bee_nest[direction=2,honey_level=2]", + "minecraft:bee_nest[facing=north,honey_level=3]": "minecraft:bee_nest[direction=2,honey_level=3]", + "minecraft:bee_nest[facing=north,honey_level=4]": "minecraft:bee_nest[direction=2,honey_level=4]", + "minecraft:bee_nest[facing=north,honey_level=5]": "minecraft:bee_nest[direction=2,honey_level=5]", + "minecraft:bee_nest[facing=south,honey_level=0]": "minecraft:bee_nest[direction=0,honey_level=0]", + "minecraft:bee_nest[facing=south,honey_level=1]": "minecraft:bee_nest[direction=0,honey_level=1]", + "minecraft:bee_nest[facing=south,honey_level=2]": "minecraft:bee_nest[direction=0,honey_level=2]", + "minecraft:bee_nest[facing=south,honey_level=3]": "minecraft:bee_nest[direction=0,honey_level=3]", + "minecraft:bee_nest[facing=south,honey_level=4]": "minecraft:bee_nest[direction=0,honey_level=4]", + "minecraft:bee_nest[facing=south,honey_level=5]": "minecraft:bee_nest[direction=0,honey_level=5]", + "minecraft:bee_nest[facing=west,honey_level=0]": "minecraft:bee_nest[direction=1,honey_level=0]", + "minecraft:bee_nest[facing=west,honey_level=1]": "minecraft:bee_nest[direction=1,honey_level=1]", + "minecraft:bee_nest[facing=west,honey_level=2]": "minecraft:bee_nest[direction=1,honey_level=2]", + "minecraft:bee_nest[facing=west,honey_level=3]": "minecraft:bee_nest[direction=1,honey_level=3]", + "minecraft:bee_nest[facing=west,honey_level=4]": "minecraft:bee_nest[direction=1,honey_level=4]", + "minecraft:bee_nest[facing=west,honey_level=5]": "minecraft:bee_nest[direction=1,honey_level=5]", + "minecraft:bee_nest[facing=east,honey_level=0]": "minecraft:bee_nest[direction=3,honey_level=0]", + "minecraft:bee_nest[facing=east,honey_level=1]": "minecraft:bee_nest[direction=3,honey_level=1]", + "minecraft:bee_nest[facing=east,honey_level=2]": "minecraft:bee_nest[direction=3,honey_level=2]", + "minecraft:bee_nest[facing=east,honey_level=3]": "minecraft:bee_nest[direction=3,honey_level=3]", + "minecraft:bee_nest[facing=east,honey_level=4]": "minecraft:bee_nest[direction=3,honey_level=4]", + "minecraft:bee_nest[facing=east,honey_level=5]": "minecraft:bee_nest[direction=3,honey_level=5]", + "minecraft:beehive[facing=north,honey_level=0]": "minecraft:beehive[direction=2,honey_level=0]", + "minecraft:beehive[facing=north,honey_level=1]": "minecraft:beehive[direction=2,honey_level=1]", + "minecraft:beehive[facing=north,honey_level=2]": "minecraft:beehive[direction=2,honey_level=2]", + "minecraft:beehive[facing=north,honey_level=3]": "minecraft:beehive[direction=2,honey_level=3]", + "minecraft:beehive[facing=north,honey_level=4]": "minecraft:beehive[direction=2,honey_level=4]", + "minecraft:beehive[facing=north,honey_level=5]": "minecraft:beehive[direction=2,honey_level=5]", + "minecraft:beehive[facing=south,honey_level=0]": "minecraft:beehive[direction=0,honey_level=0]", + "minecraft:beehive[facing=south,honey_level=1]": "minecraft:beehive[direction=0,honey_level=1]", + "minecraft:beehive[facing=south,honey_level=2]": "minecraft:beehive[direction=0,honey_level=2]", + "minecraft:beehive[facing=south,honey_level=3]": "minecraft:beehive[direction=0,honey_level=3]", + "minecraft:beehive[facing=south,honey_level=4]": "minecraft:beehive[direction=0,honey_level=4]", + "minecraft:beehive[facing=south,honey_level=5]": "minecraft:beehive[direction=0,honey_level=5]", + "minecraft:beehive[facing=west,honey_level=0]": "minecraft:beehive[direction=1,honey_level=0]", + "minecraft:beehive[facing=west,honey_level=1]": "minecraft:beehive[direction=1,honey_level=1]", + "minecraft:beehive[facing=west,honey_level=2]": "minecraft:beehive[direction=1,honey_level=2]", + "minecraft:beehive[facing=west,honey_level=3]": "minecraft:beehive[direction=1,honey_level=3]", + "minecraft:beehive[facing=west,honey_level=4]": "minecraft:beehive[direction=1,honey_level=4]", + "minecraft:beehive[facing=west,honey_level=5]": "minecraft:beehive[direction=1,honey_level=5]", + "minecraft:beehive[facing=east,honey_level=0]": "minecraft:beehive[direction=3,honey_level=0]", + "minecraft:beehive[facing=east,honey_level=1]": "minecraft:beehive[direction=3,honey_level=1]", + "minecraft:beehive[facing=east,honey_level=2]": "minecraft:beehive[direction=3,honey_level=2]", + "minecraft:beehive[facing=east,honey_level=3]": "minecraft:beehive[direction=3,honey_level=3]", + "minecraft:beehive[facing=east,honey_level=4]": "minecraft:beehive[direction=3,honey_level=4]", + "minecraft:beehive[facing=east,honey_level=5]": "minecraft:beehive[direction=3,honey_level=5]", + "minecraft:honey_block[]": "minecraft:honey_block[]", + "minecraft:honeycomb_block[]": "minecraft:honeycomb_block[]", + "minecraft:netherite_block[]": "minecraft:netherite_block[]", + "minecraft:ancient_debris[]": "minecraft:ancient_debris[]", + "minecraft:crying_obsidian[]": "minecraft:crying_obsidian[]", + "minecraft:respawn_anchor[charges=0]": "minecraft:respawn_anchor[respawn_anchor_charge=0]", + "minecraft:respawn_anchor[charges=1]": "minecraft:respawn_anchor[respawn_anchor_charge=1]", + "minecraft:respawn_anchor[charges=2]": "minecraft:respawn_anchor[respawn_anchor_charge=2]", + "minecraft:respawn_anchor[charges=3]": "minecraft:respawn_anchor[respawn_anchor_charge=3]", + "minecraft:respawn_anchor[charges=4]": "minecraft:respawn_anchor[respawn_anchor_charge=4]", + "minecraft:potted_crimson_fungus[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_warped_fungus[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_crimson_roots[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_warped_roots[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:lodestone[]": "minecraft:lodestone[]", + "minecraft:blackstone[]": "minecraft:blackstone[]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_slab[type=top,waterlogged=true]": "minecraft:blackstone_slab[minecraft:vertical_half=top]", + "minecraft:blackstone_slab[type=top,waterlogged=false]": "minecraft:blackstone_slab[minecraft:vertical_half=top]", + "minecraft:blackstone_slab[type=bottom,waterlogged=true]": "minecraft:blackstone_slab[minecraft:vertical_half=bottom]", + "minecraft:blackstone_slab[type=bottom,waterlogged=false]": "minecraft:blackstone_slab[minecraft:vertical_half=bottom]", + "minecraft:blackstone_slab[type=double,waterlogged=true]": "minecraft:blackstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:blackstone_slab[type=double,waterlogged=false]": "minecraft:blackstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone[]": "minecraft:polished_blackstone[]", + "minecraft:polished_blackstone_bricks[]": "minecraft:polished_blackstone_bricks[]", + "minecraft:cracked_polished_blackstone_bricks[]": "minecraft:cracked_polished_blackstone_bricks[]", + "minecraft:chiseled_polished_blackstone[]": "minecraft:chiseled_polished_blackstone[]", + "minecraft:polished_blackstone_brick_slab[type=top,waterlogged=true]": "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=top]", + "minecraft:polished_blackstone_brick_slab[type=top,waterlogged=false]": "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=top]", + "minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=true]": "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=false]": "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_brick_slab[type=double,waterlogged=true]": "minecraft:polished_blackstone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_brick_slab[type=double,waterlogged=false]": "minecraft:polished_blackstone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:gilded_blackstone[]": "minecraft:gilded_blackstone[]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_slab[type=top,waterlogged=true]": "minecraft:polished_blackstone_slab[minecraft:vertical_half=top]", + "minecraft:polished_blackstone_slab[type=top,waterlogged=false]": "minecraft:polished_blackstone_slab[minecraft:vertical_half=top]", + "minecraft:polished_blackstone_slab[type=bottom,waterlogged=true]": "minecraft:polished_blackstone_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_slab[type=bottom,waterlogged=false]": "minecraft:polished_blackstone_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_slab[type=double,waterlogged=true]": "minecraft:polished_blackstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_slab[type=double,waterlogged=false]": "minecraft:polished_blackstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_pressure_plate[powered=true]": "minecraft:polished_blackstone_pressure_plate[redstone_signal=15]", + "minecraft:polished_blackstone_pressure_plate[powered=false]": "minecraft:polished_blackstone_pressure_plate[redstone_signal=0]", + "minecraft:polished_blackstone_button[face=floor,facing=north,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=north,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=south,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=south,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=west,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=west,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=east,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=east,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:polished_blackstone_button[face=wall,facing=north,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:polished_blackstone_button[face=wall,facing=north,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:polished_blackstone_button[face=wall,facing=south,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:polished_blackstone_button[face=wall,facing=south,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:polished_blackstone_button[face=wall,facing=west,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:polished_blackstone_button[face=wall,facing=west,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:polished_blackstone_button[face=wall,facing=east,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:polished_blackstone_button[face=wall,facing=east,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:chiseled_nether_bricks[]": "minecraft:chiseled_nether_bricks[]", + "minecraft:cracked_nether_bricks[]": "minecraft:cracked_nether_bricks[]", + "minecraft:quartz_bricks[]": "minecraft:quartz_bricks[]", + "minecraft:candle[candles=1,lit=true,waterlogged=true]": "minecraft:candle[candles=0,lit=true]", + "minecraft:candle[candles=1,lit=true,waterlogged=false]": "minecraft:candle[candles=0,lit=true]", + "minecraft:candle[candles=1,lit=false,waterlogged=true]": "minecraft:candle[candles=0,lit=false]", + "minecraft:candle[candles=1,lit=false,waterlogged=false]": "minecraft:candle[candles=0,lit=false]", + "minecraft:candle[candles=2,lit=true,waterlogged=true]": "minecraft:candle[candles=1,lit=true]", + "minecraft:candle[candles=2,lit=true,waterlogged=false]": "minecraft:candle[candles=1,lit=true]", + "minecraft:candle[candles=2,lit=false,waterlogged=true]": "minecraft:candle[candles=1,lit=false]", + "minecraft:candle[candles=2,lit=false,waterlogged=false]": "minecraft:candle[candles=1,lit=false]", + "minecraft:candle[candles=3,lit=true,waterlogged=true]": "minecraft:candle[candles=2,lit=true]", + "minecraft:candle[candles=3,lit=true,waterlogged=false]": "minecraft:candle[candles=2,lit=true]", + "minecraft:candle[candles=3,lit=false,waterlogged=true]": "minecraft:candle[candles=2,lit=false]", + "minecraft:candle[candles=3,lit=false,waterlogged=false]": "minecraft:candle[candles=2,lit=false]", + "minecraft:candle[candles=4,lit=true,waterlogged=true]": "minecraft:candle[candles=3,lit=true]", + "minecraft:candle[candles=4,lit=true,waterlogged=false]": "minecraft:candle[candles=3,lit=true]", + "minecraft:candle[candles=4,lit=false,waterlogged=true]": "minecraft:candle[candles=3,lit=false]", + "minecraft:candle[candles=4,lit=false,waterlogged=false]": "minecraft:candle[candles=3,lit=false]", + "minecraft:white_candle[candles=1,lit=true,waterlogged=true]": "minecraft:white_candle[candles=0,lit=true]", + "minecraft:white_candle[candles=1,lit=true,waterlogged=false]": "minecraft:white_candle[candles=0,lit=true]", + "minecraft:white_candle[candles=1,lit=false,waterlogged=true]": "minecraft:white_candle[candles=0,lit=false]", + "minecraft:white_candle[candles=1,lit=false,waterlogged=false]": "minecraft:white_candle[candles=0,lit=false]", + "minecraft:white_candle[candles=2,lit=true,waterlogged=true]": "minecraft:white_candle[candles=1,lit=true]", + "minecraft:white_candle[candles=2,lit=true,waterlogged=false]": "minecraft:white_candle[candles=1,lit=true]", + "minecraft:white_candle[candles=2,lit=false,waterlogged=true]": "minecraft:white_candle[candles=1,lit=false]", + "minecraft:white_candle[candles=2,lit=false,waterlogged=false]": "minecraft:white_candle[candles=1,lit=false]", + "minecraft:white_candle[candles=3,lit=true,waterlogged=true]": "minecraft:white_candle[candles=2,lit=true]", + "minecraft:white_candle[candles=3,lit=true,waterlogged=false]": "minecraft:white_candle[candles=2,lit=true]", + "minecraft:white_candle[candles=3,lit=false,waterlogged=true]": "minecraft:white_candle[candles=2,lit=false]", + "minecraft:white_candle[candles=3,lit=false,waterlogged=false]": "minecraft:white_candle[candles=2,lit=false]", + "minecraft:white_candle[candles=4,lit=true,waterlogged=true]": "minecraft:white_candle[candles=3,lit=true]", + "minecraft:white_candle[candles=4,lit=true,waterlogged=false]": "minecraft:white_candle[candles=3,lit=true]", + "minecraft:white_candle[candles=4,lit=false,waterlogged=true]": "minecraft:white_candle[candles=3,lit=false]", + "minecraft:white_candle[candles=4,lit=false,waterlogged=false]": "minecraft:white_candle[candles=3,lit=false]", + "minecraft:orange_candle[candles=1,lit=true,waterlogged=true]": "minecraft:orange_candle[candles=0,lit=true]", + "minecraft:orange_candle[candles=1,lit=true,waterlogged=false]": "minecraft:orange_candle[candles=0,lit=true]", + "minecraft:orange_candle[candles=1,lit=false,waterlogged=true]": "minecraft:orange_candle[candles=0,lit=false]", + "minecraft:orange_candle[candles=1,lit=false,waterlogged=false]": "minecraft:orange_candle[candles=0,lit=false]", + "minecraft:orange_candle[candles=2,lit=true,waterlogged=true]": "minecraft:orange_candle[candles=1,lit=true]", + "minecraft:orange_candle[candles=2,lit=true,waterlogged=false]": "minecraft:orange_candle[candles=1,lit=true]", + "minecraft:orange_candle[candles=2,lit=false,waterlogged=true]": "minecraft:orange_candle[candles=1,lit=false]", + "minecraft:orange_candle[candles=2,lit=false,waterlogged=false]": "minecraft:orange_candle[candles=1,lit=false]", + "minecraft:orange_candle[candles=3,lit=true,waterlogged=true]": "minecraft:orange_candle[candles=2,lit=true]", + "minecraft:orange_candle[candles=3,lit=true,waterlogged=false]": "minecraft:orange_candle[candles=2,lit=true]", + "minecraft:orange_candle[candles=3,lit=false,waterlogged=true]": "minecraft:orange_candle[candles=2,lit=false]", + "minecraft:orange_candle[candles=3,lit=false,waterlogged=false]": "minecraft:orange_candle[candles=2,lit=false]", + "minecraft:orange_candle[candles=4,lit=true,waterlogged=true]": "minecraft:orange_candle[candles=3,lit=true]", + "minecraft:orange_candle[candles=4,lit=true,waterlogged=false]": "minecraft:orange_candle[candles=3,lit=true]", + "minecraft:orange_candle[candles=4,lit=false,waterlogged=true]": "minecraft:orange_candle[candles=3,lit=false]", + "minecraft:orange_candle[candles=4,lit=false,waterlogged=false]": "minecraft:orange_candle[candles=3,lit=false]", + "minecraft:magenta_candle[candles=1,lit=true,waterlogged=true]": "minecraft:magenta_candle[candles=0,lit=true]", + "minecraft:magenta_candle[candles=1,lit=true,waterlogged=false]": "minecraft:magenta_candle[candles=0,lit=true]", + "minecraft:magenta_candle[candles=1,lit=false,waterlogged=true]": "minecraft:magenta_candle[candles=0,lit=false]", + "minecraft:magenta_candle[candles=1,lit=false,waterlogged=false]": "minecraft:magenta_candle[candles=0,lit=false]", + "minecraft:magenta_candle[candles=2,lit=true,waterlogged=true]": "minecraft:magenta_candle[candles=1,lit=true]", + "minecraft:magenta_candle[candles=2,lit=true,waterlogged=false]": "minecraft:magenta_candle[candles=1,lit=true]", + "minecraft:magenta_candle[candles=2,lit=false,waterlogged=true]": "minecraft:magenta_candle[candles=1,lit=false]", + "minecraft:magenta_candle[candles=2,lit=false,waterlogged=false]": "minecraft:magenta_candle[candles=1,lit=false]", + "minecraft:magenta_candle[candles=3,lit=true,waterlogged=true]": "minecraft:magenta_candle[candles=2,lit=true]", + "minecraft:magenta_candle[candles=3,lit=true,waterlogged=false]": "minecraft:magenta_candle[candles=2,lit=true]", + "minecraft:magenta_candle[candles=3,lit=false,waterlogged=true]": "minecraft:magenta_candle[candles=2,lit=false]", + "minecraft:magenta_candle[candles=3,lit=false,waterlogged=false]": "minecraft:magenta_candle[candles=2,lit=false]", + "minecraft:magenta_candle[candles=4,lit=true,waterlogged=true]": "minecraft:magenta_candle[candles=3,lit=true]", + "minecraft:magenta_candle[candles=4,lit=true,waterlogged=false]": "minecraft:magenta_candle[candles=3,lit=true]", + "minecraft:magenta_candle[candles=4,lit=false,waterlogged=true]": "minecraft:magenta_candle[candles=3,lit=false]", + "minecraft:magenta_candle[candles=4,lit=false,waterlogged=false]": "minecraft:magenta_candle[candles=3,lit=false]", + "minecraft:light_blue_candle[candles=1,lit=true,waterlogged=true]": "minecraft:light_blue_candle[candles=0,lit=true]", + "minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false]": "minecraft:light_blue_candle[candles=0,lit=true]", + "minecraft:light_blue_candle[candles=1,lit=false,waterlogged=true]": "minecraft:light_blue_candle[candles=0,lit=false]", + "minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false]": "minecraft:light_blue_candle[candles=0,lit=false]", + "minecraft:light_blue_candle[candles=2,lit=true,waterlogged=true]": "minecraft:light_blue_candle[candles=1,lit=true]", + "minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false]": "minecraft:light_blue_candle[candles=1,lit=true]", + "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=true]": "minecraft:light_blue_candle[candles=1,lit=false]", + "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false]": "minecraft:light_blue_candle[candles=1,lit=false]", + "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true]": "minecraft:light_blue_candle[candles=2,lit=true]", + "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false]": "minecraft:light_blue_candle[candles=2,lit=true]", + "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true]": "minecraft:light_blue_candle[candles=2,lit=false]", + "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false]": "minecraft:light_blue_candle[candles=2,lit=false]", + "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true]": "minecraft:light_blue_candle[candles=3,lit=true]", + "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false]": "minecraft:light_blue_candle[candles=3,lit=true]", + "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true]": "minecraft:light_blue_candle[candles=3,lit=false]", + "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false]": "minecraft:light_blue_candle[candles=3,lit=false]", + "minecraft:yellow_candle[candles=1,lit=true,waterlogged=true]": "minecraft:yellow_candle[candles=0,lit=true]", + "minecraft:yellow_candle[candles=1,lit=true,waterlogged=false]": "minecraft:yellow_candle[candles=0,lit=true]", + "minecraft:yellow_candle[candles=1,lit=false,waterlogged=true]": "minecraft:yellow_candle[candles=0,lit=false]", + "minecraft:yellow_candle[candles=1,lit=false,waterlogged=false]": "minecraft:yellow_candle[candles=0,lit=false]", + "minecraft:yellow_candle[candles=2,lit=true,waterlogged=true]": "minecraft:yellow_candle[candles=1,lit=true]", + "minecraft:yellow_candle[candles=2,lit=true,waterlogged=false]": "minecraft:yellow_candle[candles=1,lit=true]", + "minecraft:yellow_candle[candles=2,lit=false,waterlogged=true]": "minecraft:yellow_candle[candles=1,lit=false]", + "minecraft:yellow_candle[candles=2,lit=false,waterlogged=false]": "minecraft:yellow_candle[candles=1,lit=false]", + "minecraft:yellow_candle[candles=3,lit=true,waterlogged=true]": "minecraft:yellow_candle[candles=2,lit=true]", + "minecraft:yellow_candle[candles=3,lit=true,waterlogged=false]": "minecraft:yellow_candle[candles=2,lit=true]", + "minecraft:yellow_candle[candles=3,lit=false,waterlogged=true]": "minecraft:yellow_candle[candles=2,lit=false]", + "minecraft:yellow_candle[candles=3,lit=false,waterlogged=false]": "minecraft:yellow_candle[candles=2,lit=false]", + "minecraft:yellow_candle[candles=4,lit=true,waterlogged=true]": "minecraft:yellow_candle[candles=3,lit=true]", + "minecraft:yellow_candle[candles=4,lit=true,waterlogged=false]": "minecraft:yellow_candle[candles=3,lit=true]", + "minecraft:yellow_candle[candles=4,lit=false,waterlogged=true]": "minecraft:yellow_candle[candles=3,lit=false]", + "minecraft:yellow_candle[candles=4,lit=false,waterlogged=false]": "minecraft:yellow_candle[candles=3,lit=false]", + "minecraft:lime_candle[candles=1,lit=true,waterlogged=true]": "minecraft:lime_candle[candles=0,lit=true]", + "minecraft:lime_candle[candles=1,lit=true,waterlogged=false]": "minecraft:lime_candle[candles=0,lit=true]", + "minecraft:lime_candle[candles=1,lit=false,waterlogged=true]": "minecraft:lime_candle[candles=0,lit=false]", + "minecraft:lime_candle[candles=1,lit=false,waterlogged=false]": "minecraft:lime_candle[candles=0,lit=false]", + "minecraft:lime_candle[candles=2,lit=true,waterlogged=true]": "minecraft:lime_candle[candles=1,lit=true]", + "minecraft:lime_candle[candles=2,lit=true,waterlogged=false]": "minecraft:lime_candle[candles=1,lit=true]", + "minecraft:lime_candle[candles=2,lit=false,waterlogged=true]": "minecraft:lime_candle[candles=1,lit=false]", + "minecraft:lime_candle[candles=2,lit=false,waterlogged=false]": "minecraft:lime_candle[candles=1,lit=false]", + "minecraft:lime_candle[candles=3,lit=true,waterlogged=true]": "minecraft:lime_candle[candles=2,lit=true]", + "minecraft:lime_candle[candles=3,lit=true,waterlogged=false]": "minecraft:lime_candle[candles=2,lit=true]", + "minecraft:lime_candle[candles=3,lit=false,waterlogged=true]": "minecraft:lime_candle[candles=2,lit=false]", + "minecraft:lime_candle[candles=3,lit=false,waterlogged=false]": "minecraft:lime_candle[candles=2,lit=false]", + "minecraft:lime_candle[candles=4,lit=true,waterlogged=true]": "minecraft:lime_candle[candles=3,lit=true]", + "minecraft:lime_candle[candles=4,lit=true,waterlogged=false]": "minecraft:lime_candle[candles=3,lit=true]", + "minecraft:lime_candle[candles=4,lit=false,waterlogged=true]": "minecraft:lime_candle[candles=3,lit=false]", + "minecraft:lime_candle[candles=4,lit=false,waterlogged=false]": "minecraft:lime_candle[candles=3,lit=false]", + "minecraft:pink_candle[candles=1,lit=true,waterlogged=true]": "minecraft:pink_candle[candles=0,lit=true]", + "minecraft:pink_candle[candles=1,lit=true,waterlogged=false]": "minecraft:pink_candle[candles=0,lit=true]", + "minecraft:pink_candle[candles=1,lit=false,waterlogged=true]": "minecraft:pink_candle[candles=0,lit=false]", + "minecraft:pink_candle[candles=1,lit=false,waterlogged=false]": "minecraft:pink_candle[candles=0,lit=false]", + "minecraft:pink_candle[candles=2,lit=true,waterlogged=true]": "minecraft:pink_candle[candles=1,lit=true]", + "minecraft:pink_candle[candles=2,lit=true,waterlogged=false]": "minecraft:pink_candle[candles=1,lit=true]", + "minecraft:pink_candle[candles=2,lit=false,waterlogged=true]": "minecraft:pink_candle[candles=1,lit=false]", + "minecraft:pink_candle[candles=2,lit=false,waterlogged=false]": "minecraft:pink_candle[candles=1,lit=false]", + "minecraft:pink_candle[candles=3,lit=true,waterlogged=true]": "minecraft:pink_candle[candles=2,lit=true]", + "minecraft:pink_candle[candles=3,lit=true,waterlogged=false]": "minecraft:pink_candle[candles=2,lit=true]", + "minecraft:pink_candle[candles=3,lit=false,waterlogged=true]": "minecraft:pink_candle[candles=2,lit=false]", + "minecraft:pink_candle[candles=3,lit=false,waterlogged=false]": "minecraft:pink_candle[candles=2,lit=false]", + "minecraft:pink_candle[candles=4,lit=true,waterlogged=true]": "minecraft:pink_candle[candles=3,lit=true]", + "minecraft:pink_candle[candles=4,lit=true,waterlogged=false]": "minecraft:pink_candle[candles=3,lit=true]", + "minecraft:pink_candle[candles=4,lit=false,waterlogged=true]": "minecraft:pink_candle[candles=3,lit=false]", + "minecraft:pink_candle[candles=4,lit=false,waterlogged=false]": "minecraft:pink_candle[candles=3,lit=false]", + "minecraft:gray_candle[candles=1,lit=true,waterlogged=true]": "minecraft:gray_candle[candles=0,lit=true]", + "minecraft:gray_candle[candles=1,lit=true,waterlogged=false]": "minecraft:gray_candle[candles=0,lit=true]", + "minecraft:gray_candle[candles=1,lit=false,waterlogged=true]": "minecraft:gray_candle[candles=0,lit=false]", + "minecraft:gray_candle[candles=1,lit=false,waterlogged=false]": "minecraft:gray_candle[candles=0,lit=false]", + "minecraft:gray_candle[candles=2,lit=true,waterlogged=true]": "minecraft:gray_candle[candles=1,lit=true]", + "minecraft:gray_candle[candles=2,lit=true,waterlogged=false]": "minecraft:gray_candle[candles=1,lit=true]", + "minecraft:gray_candle[candles=2,lit=false,waterlogged=true]": "minecraft:gray_candle[candles=1,lit=false]", + "minecraft:gray_candle[candles=2,lit=false,waterlogged=false]": "minecraft:gray_candle[candles=1,lit=false]", + "minecraft:gray_candle[candles=3,lit=true,waterlogged=true]": "minecraft:gray_candle[candles=2,lit=true]", + "minecraft:gray_candle[candles=3,lit=true,waterlogged=false]": "minecraft:gray_candle[candles=2,lit=true]", + "minecraft:gray_candle[candles=3,lit=false,waterlogged=true]": "minecraft:gray_candle[candles=2,lit=false]", + "minecraft:gray_candle[candles=3,lit=false,waterlogged=false]": "minecraft:gray_candle[candles=2,lit=false]", + "minecraft:gray_candle[candles=4,lit=true,waterlogged=true]": "minecraft:gray_candle[candles=3,lit=true]", + "minecraft:gray_candle[candles=4,lit=true,waterlogged=false]": "minecraft:gray_candle[candles=3,lit=true]", + "minecraft:gray_candle[candles=4,lit=false,waterlogged=true]": "minecraft:gray_candle[candles=3,lit=false]", + "minecraft:gray_candle[candles=4,lit=false,waterlogged=false]": "minecraft:gray_candle[candles=3,lit=false]", + "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=true]": "minecraft:light_gray_candle[candles=0,lit=true]", + "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false]": "minecraft:light_gray_candle[candles=0,lit=true]", + "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true]": "minecraft:light_gray_candle[candles=0,lit=false]", + "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false]": "minecraft:light_gray_candle[candles=0,lit=false]", + "minecraft:light_gray_candle[candles=2,lit=true,waterlogged=true]": "minecraft:light_gray_candle[candles=1,lit=true]", + "minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false]": "minecraft:light_gray_candle[candles=1,lit=true]", + "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true]": "minecraft:light_gray_candle[candles=1,lit=false]", + "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false]": "minecraft:light_gray_candle[candles=1,lit=false]", + "minecraft:light_gray_candle[candles=3,lit=true,waterlogged=true]": "minecraft:light_gray_candle[candles=2,lit=true]", + "minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false]": "minecraft:light_gray_candle[candles=2,lit=true]", + "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true]": "minecraft:light_gray_candle[candles=2,lit=false]", + "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false]": "minecraft:light_gray_candle[candles=2,lit=false]", + "minecraft:light_gray_candle[candles=4,lit=true,waterlogged=true]": "minecraft:light_gray_candle[candles=3,lit=true]", + "minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false]": "minecraft:light_gray_candle[candles=3,lit=true]", + "minecraft:light_gray_candle[candles=4,lit=false,waterlogged=true]": "minecraft:light_gray_candle[candles=3,lit=false]", + "minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false]": "minecraft:light_gray_candle[candles=3,lit=false]", + "minecraft:cyan_candle[candles=1,lit=true,waterlogged=true]": "minecraft:cyan_candle[candles=0,lit=true]", + "minecraft:cyan_candle[candles=1,lit=true,waterlogged=false]": "minecraft:cyan_candle[candles=0,lit=true]", + "minecraft:cyan_candle[candles=1,lit=false,waterlogged=true]": "minecraft:cyan_candle[candles=0,lit=false]", + "minecraft:cyan_candle[candles=1,lit=false,waterlogged=false]": "minecraft:cyan_candle[candles=0,lit=false]", + "minecraft:cyan_candle[candles=2,lit=true,waterlogged=true]": "minecraft:cyan_candle[candles=1,lit=true]", + "minecraft:cyan_candle[candles=2,lit=true,waterlogged=false]": "minecraft:cyan_candle[candles=1,lit=true]", + "minecraft:cyan_candle[candles=2,lit=false,waterlogged=true]": "minecraft:cyan_candle[candles=1,lit=false]", + "minecraft:cyan_candle[candles=2,lit=false,waterlogged=false]": "minecraft:cyan_candle[candles=1,lit=false]", + "minecraft:cyan_candle[candles=3,lit=true,waterlogged=true]": "minecraft:cyan_candle[candles=2,lit=true]", + "minecraft:cyan_candle[candles=3,lit=true,waterlogged=false]": "minecraft:cyan_candle[candles=2,lit=true]", + "minecraft:cyan_candle[candles=3,lit=false,waterlogged=true]": "minecraft:cyan_candle[candles=2,lit=false]", + "minecraft:cyan_candle[candles=3,lit=false,waterlogged=false]": "minecraft:cyan_candle[candles=2,lit=false]", + "minecraft:cyan_candle[candles=4,lit=true,waterlogged=true]": "minecraft:cyan_candle[candles=3,lit=true]", + "minecraft:cyan_candle[candles=4,lit=true,waterlogged=false]": "minecraft:cyan_candle[candles=3,lit=true]", + "minecraft:cyan_candle[candles=4,lit=false,waterlogged=true]": "minecraft:cyan_candle[candles=3,lit=false]", + "minecraft:cyan_candle[candles=4,lit=false,waterlogged=false]": "minecraft:cyan_candle[candles=3,lit=false]", + "minecraft:purple_candle[candles=1,lit=true,waterlogged=true]": "minecraft:purple_candle[candles=0,lit=true]", + "minecraft:purple_candle[candles=1,lit=true,waterlogged=false]": "minecraft:purple_candle[candles=0,lit=true]", + "minecraft:purple_candle[candles=1,lit=false,waterlogged=true]": "minecraft:purple_candle[candles=0,lit=false]", + "minecraft:purple_candle[candles=1,lit=false,waterlogged=false]": "minecraft:purple_candle[candles=0,lit=false]", + "minecraft:purple_candle[candles=2,lit=true,waterlogged=true]": "minecraft:purple_candle[candles=1,lit=true]", + "minecraft:purple_candle[candles=2,lit=true,waterlogged=false]": "minecraft:purple_candle[candles=1,lit=true]", + "minecraft:purple_candle[candles=2,lit=false,waterlogged=true]": "minecraft:purple_candle[candles=1,lit=false]", + "minecraft:purple_candle[candles=2,lit=false,waterlogged=false]": "minecraft:purple_candle[candles=1,lit=false]", + "minecraft:purple_candle[candles=3,lit=true,waterlogged=true]": "minecraft:purple_candle[candles=2,lit=true]", + "minecraft:purple_candle[candles=3,lit=true,waterlogged=false]": "minecraft:purple_candle[candles=2,lit=true]", + "minecraft:purple_candle[candles=3,lit=false,waterlogged=true]": "minecraft:purple_candle[candles=2,lit=false]", + "minecraft:purple_candle[candles=3,lit=false,waterlogged=false]": "minecraft:purple_candle[candles=2,lit=false]", + "minecraft:purple_candle[candles=4,lit=true,waterlogged=true]": "minecraft:purple_candle[candles=3,lit=true]", + "minecraft:purple_candle[candles=4,lit=true,waterlogged=false]": "minecraft:purple_candle[candles=3,lit=true]", + "minecraft:purple_candle[candles=4,lit=false,waterlogged=true]": "minecraft:purple_candle[candles=3,lit=false]", + "minecraft:purple_candle[candles=4,lit=false,waterlogged=false]": "minecraft:purple_candle[candles=3,lit=false]", + "minecraft:blue_candle[candles=1,lit=true,waterlogged=true]": "minecraft:blue_candle[candles=0,lit=true]", + "minecraft:blue_candle[candles=1,lit=true,waterlogged=false]": "minecraft:blue_candle[candles=0,lit=true]", + "minecraft:blue_candle[candles=1,lit=false,waterlogged=true]": "minecraft:blue_candle[candles=0,lit=false]", + "minecraft:blue_candle[candles=1,lit=false,waterlogged=false]": "minecraft:blue_candle[candles=0,lit=false]", + "minecraft:blue_candle[candles=2,lit=true,waterlogged=true]": "minecraft:blue_candle[candles=1,lit=true]", + "minecraft:blue_candle[candles=2,lit=true,waterlogged=false]": "minecraft:blue_candle[candles=1,lit=true]", + "minecraft:blue_candle[candles=2,lit=false,waterlogged=true]": "minecraft:blue_candle[candles=1,lit=false]", + "minecraft:blue_candle[candles=2,lit=false,waterlogged=false]": "minecraft:blue_candle[candles=1,lit=false]", + "minecraft:blue_candle[candles=3,lit=true,waterlogged=true]": "minecraft:blue_candle[candles=2,lit=true]", + "minecraft:blue_candle[candles=3,lit=true,waterlogged=false]": "minecraft:blue_candle[candles=2,lit=true]", + "minecraft:blue_candle[candles=3,lit=false,waterlogged=true]": "minecraft:blue_candle[candles=2,lit=false]", + "minecraft:blue_candle[candles=3,lit=false,waterlogged=false]": "minecraft:blue_candle[candles=2,lit=false]", + "minecraft:blue_candle[candles=4,lit=true,waterlogged=true]": "minecraft:blue_candle[candles=3,lit=true]", + "minecraft:blue_candle[candles=4,lit=true,waterlogged=false]": "minecraft:blue_candle[candles=3,lit=true]", + "minecraft:blue_candle[candles=4,lit=false,waterlogged=true]": "minecraft:blue_candle[candles=3,lit=false]", + "minecraft:blue_candle[candles=4,lit=false,waterlogged=false]": "minecraft:blue_candle[candles=3,lit=false]", + "minecraft:brown_candle[candles=1,lit=true,waterlogged=true]": "minecraft:brown_candle[candles=0,lit=true]", + "minecraft:brown_candle[candles=1,lit=true,waterlogged=false]": "minecraft:brown_candle[candles=0,lit=true]", + "minecraft:brown_candle[candles=1,lit=false,waterlogged=true]": "minecraft:brown_candle[candles=0,lit=false]", + "minecraft:brown_candle[candles=1,lit=false,waterlogged=false]": "minecraft:brown_candle[candles=0,lit=false]", + "minecraft:brown_candle[candles=2,lit=true,waterlogged=true]": "minecraft:brown_candle[candles=1,lit=true]", + "minecraft:brown_candle[candles=2,lit=true,waterlogged=false]": "minecraft:brown_candle[candles=1,lit=true]", + "minecraft:brown_candle[candles=2,lit=false,waterlogged=true]": "minecraft:brown_candle[candles=1,lit=false]", + "minecraft:brown_candle[candles=2,lit=false,waterlogged=false]": "minecraft:brown_candle[candles=1,lit=false]", + "minecraft:brown_candle[candles=3,lit=true,waterlogged=true]": "minecraft:brown_candle[candles=2,lit=true]", + "minecraft:brown_candle[candles=3,lit=true,waterlogged=false]": "minecraft:brown_candle[candles=2,lit=true]", + "minecraft:brown_candle[candles=3,lit=false,waterlogged=true]": "minecraft:brown_candle[candles=2,lit=false]", + "minecraft:brown_candle[candles=3,lit=false,waterlogged=false]": "minecraft:brown_candle[candles=2,lit=false]", + "minecraft:brown_candle[candles=4,lit=true,waterlogged=true]": "minecraft:brown_candle[candles=3,lit=true]", + "minecraft:brown_candle[candles=4,lit=true,waterlogged=false]": "minecraft:brown_candle[candles=3,lit=true]", + "minecraft:brown_candle[candles=4,lit=false,waterlogged=true]": "minecraft:brown_candle[candles=3,lit=false]", + "minecraft:brown_candle[candles=4,lit=false,waterlogged=false]": "minecraft:brown_candle[candles=3,lit=false]", + "minecraft:green_candle[candles=1,lit=true,waterlogged=true]": "minecraft:green_candle[candles=0,lit=true]", + "minecraft:green_candle[candles=1,lit=true,waterlogged=false]": "minecraft:green_candle[candles=0,lit=true]", + "minecraft:green_candle[candles=1,lit=false,waterlogged=true]": "minecraft:green_candle[candles=0,lit=false]", + "minecraft:green_candle[candles=1,lit=false,waterlogged=false]": "minecraft:green_candle[candles=0,lit=false]", + "minecraft:green_candle[candles=2,lit=true,waterlogged=true]": "minecraft:green_candle[candles=1,lit=true]", + "minecraft:green_candle[candles=2,lit=true,waterlogged=false]": "minecraft:green_candle[candles=1,lit=true]", + "minecraft:green_candle[candles=2,lit=false,waterlogged=true]": "minecraft:green_candle[candles=1,lit=false]", + "minecraft:green_candle[candles=2,lit=false,waterlogged=false]": "minecraft:green_candle[candles=1,lit=false]", + "minecraft:green_candle[candles=3,lit=true,waterlogged=true]": "minecraft:green_candle[candles=2,lit=true]", + "minecraft:green_candle[candles=3,lit=true,waterlogged=false]": "minecraft:green_candle[candles=2,lit=true]", + "minecraft:green_candle[candles=3,lit=false,waterlogged=true]": "minecraft:green_candle[candles=2,lit=false]", + "minecraft:green_candle[candles=3,lit=false,waterlogged=false]": "minecraft:green_candle[candles=2,lit=false]", + "minecraft:green_candle[candles=4,lit=true,waterlogged=true]": "minecraft:green_candle[candles=3,lit=true]", + "minecraft:green_candle[candles=4,lit=true,waterlogged=false]": "minecraft:green_candle[candles=3,lit=true]", + "minecraft:green_candle[candles=4,lit=false,waterlogged=true]": "minecraft:green_candle[candles=3,lit=false]", + "minecraft:green_candle[candles=4,lit=false,waterlogged=false]": "minecraft:green_candle[candles=3,lit=false]", + "minecraft:red_candle[candles=1,lit=true,waterlogged=true]": "minecraft:red_candle[candles=0,lit=true]", + "minecraft:red_candle[candles=1,lit=true,waterlogged=false]": "minecraft:red_candle[candles=0,lit=true]", + "minecraft:red_candle[candles=1,lit=false,waterlogged=true]": "minecraft:red_candle[candles=0,lit=false]", + "minecraft:red_candle[candles=1,lit=false,waterlogged=false]": "minecraft:red_candle[candles=0,lit=false]", + "minecraft:red_candle[candles=2,lit=true,waterlogged=true]": "minecraft:red_candle[candles=1,lit=true]", + "minecraft:red_candle[candles=2,lit=true,waterlogged=false]": "minecraft:red_candle[candles=1,lit=true]", + "minecraft:red_candle[candles=2,lit=false,waterlogged=true]": "minecraft:red_candle[candles=1,lit=false]", + "minecraft:red_candle[candles=2,lit=false,waterlogged=false]": "minecraft:red_candle[candles=1,lit=false]", + "minecraft:red_candle[candles=3,lit=true,waterlogged=true]": "minecraft:red_candle[candles=2,lit=true]", + "minecraft:red_candle[candles=3,lit=true,waterlogged=false]": "minecraft:red_candle[candles=2,lit=true]", + "minecraft:red_candle[candles=3,lit=false,waterlogged=true]": "minecraft:red_candle[candles=2,lit=false]", + "minecraft:red_candle[candles=3,lit=false,waterlogged=false]": "minecraft:red_candle[candles=2,lit=false]", + "minecraft:red_candle[candles=4,lit=true,waterlogged=true]": "minecraft:red_candle[candles=3,lit=true]", + "minecraft:red_candle[candles=4,lit=true,waterlogged=false]": "minecraft:red_candle[candles=3,lit=true]", + "minecraft:red_candle[candles=4,lit=false,waterlogged=true]": "minecraft:red_candle[candles=3,lit=false]", + "minecraft:red_candle[candles=4,lit=false,waterlogged=false]": "minecraft:red_candle[candles=3,lit=false]", + "minecraft:black_candle[candles=1,lit=true,waterlogged=true]": "minecraft:black_candle[candles=0,lit=true]", + "minecraft:black_candle[candles=1,lit=true,waterlogged=false]": "minecraft:black_candle[candles=0,lit=true]", + "minecraft:black_candle[candles=1,lit=false,waterlogged=true]": "minecraft:black_candle[candles=0,lit=false]", + "minecraft:black_candle[candles=1,lit=false,waterlogged=false]": "minecraft:black_candle[candles=0,lit=false]", + "minecraft:black_candle[candles=2,lit=true,waterlogged=true]": "minecraft:black_candle[candles=1,lit=true]", + "minecraft:black_candle[candles=2,lit=true,waterlogged=false]": "minecraft:black_candle[candles=1,lit=true]", + "minecraft:black_candle[candles=2,lit=false,waterlogged=true]": "minecraft:black_candle[candles=1,lit=false]", + "minecraft:black_candle[candles=2,lit=false,waterlogged=false]": "minecraft:black_candle[candles=1,lit=false]", + "minecraft:black_candle[candles=3,lit=true,waterlogged=true]": "minecraft:black_candle[candles=2,lit=true]", + "minecraft:black_candle[candles=3,lit=true,waterlogged=false]": "minecraft:black_candle[candles=2,lit=true]", + "minecraft:black_candle[candles=3,lit=false,waterlogged=true]": "minecraft:black_candle[candles=2,lit=false]", + "minecraft:black_candle[candles=3,lit=false,waterlogged=false]": "minecraft:black_candle[candles=2,lit=false]", + "minecraft:black_candle[candles=4,lit=true,waterlogged=true]": "minecraft:black_candle[candles=3,lit=true]", + "minecraft:black_candle[candles=4,lit=true,waterlogged=false]": "minecraft:black_candle[candles=3,lit=true]", + "minecraft:black_candle[candles=4,lit=false,waterlogged=true]": "minecraft:black_candle[candles=3,lit=false]", + "minecraft:black_candle[candles=4,lit=false,waterlogged=false]": "minecraft:black_candle[candles=3,lit=false]", + "minecraft:candle_cake[lit=true]": "minecraft:candle_cake[lit=true]", + "minecraft:candle_cake[lit=false]": "minecraft:candle_cake[lit=false]", + "minecraft:white_candle_cake[lit=true]": "minecraft:white_candle_cake[lit=true]", + "minecraft:white_candle_cake[lit=false]": "minecraft:white_candle_cake[lit=false]", + "minecraft:orange_candle_cake[lit=true]": "minecraft:orange_candle_cake[lit=true]", + "minecraft:orange_candle_cake[lit=false]": "minecraft:orange_candle_cake[lit=false]", + "minecraft:magenta_candle_cake[lit=true]": "minecraft:magenta_candle_cake[lit=true]", + "minecraft:magenta_candle_cake[lit=false]": "minecraft:magenta_candle_cake[lit=false]", + "minecraft:light_blue_candle_cake[lit=true]": "minecraft:light_blue_candle_cake[lit=true]", + "minecraft:light_blue_candle_cake[lit=false]": "minecraft:light_blue_candle_cake[lit=false]", + "minecraft:yellow_candle_cake[lit=true]": "minecraft:yellow_candle_cake[lit=true]", + "minecraft:yellow_candle_cake[lit=false]": "minecraft:yellow_candle_cake[lit=false]", + "minecraft:lime_candle_cake[lit=true]": "minecraft:lime_candle_cake[lit=true]", + "minecraft:lime_candle_cake[lit=false]": "minecraft:lime_candle_cake[lit=false]", + "minecraft:pink_candle_cake[lit=true]": "minecraft:pink_candle_cake[lit=true]", + "minecraft:pink_candle_cake[lit=false]": "minecraft:pink_candle_cake[lit=false]", + "minecraft:gray_candle_cake[lit=true]": "minecraft:gray_candle_cake[lit=true]", + "minecraft:gray_candle_cake[lit=false]": "minecraft:gray_candle_cake[lit=false]", + "minecraft:light_gray_candle_cake[lit=true]": "minecraft:light_gray_candle_cake[lit=true]", + "minecraft:light_gray_candle_cake[lit=false]": "minecraft:light_gray_candle_cake[lit=false]", + "minecraft:cyan_candle_cake[lit=true]": "minecraft:cyan_candle_cake[lit=true]", + "minecraft:cyan_candle_cake[lit=false]": "minecraft:cyan_candle_cake[lit=false]", + "minecraft:purple_candle_cake[lit=true]": "minecraft:purple_candle_cake[lit=true]", + "minecraft:purple_candle_cake[lit=false]": "minecraft:purple_candle_cake[lit=false]", + "minecraft:blue_candle_cake[lit=true]": "minecraft:blue_candle_cake[lit=true]", + "minecraft:blue_candle_cake[lit=false]": "minecraft:blue_candle_cake[lit=false]", + "minecraft:brown_candle_cake[lit=true]": "minecraft:brown_candle_cake[lit=true]", + "minecraft:brown_candle_cake[lit=false]": "minecraft:brown_candle_cake[lit=false]", + "minecraft:green_candle_cake[lit=true]": "minecraft:green_candle_cake[lit=true]", + "minecraft:green_candle_cake[lit=false]": "minecraft:green_candle_cake[lit=false]", + "minecraft:red_candle_cake[lit=true]": "minecraft:red_candle_cake[lit=true]", + "minecraft:red_candle_cake[lit=false]": "minecraft:red_candle_cake[lit=false]", + "minecraft:black_candle_cake[lit=true]": "minecraft:black_candle_cake[lit=true]", + "minecraft:black_candle_cake[lit=false]": "minecraft:black_candle_cake[lit=false]", + "minecraft:amethyst_block[]": "minecraft:amethyst_block[]", + "minecraft:budding_amethyst[]": "minecraft:budding_amethyst[]", + "minecraft:amethyst_cluster[facing=north,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=north]", + "minecraft:amethyst_cluster[facing=north,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=north]", + "minecraft:amethyst_cluster[facing=east,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=east]", + "minecraft:amethyst_cluster[facing=east,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=east]", + "minecraft:amethyst_cluster[facing=south,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=south]", + "minecraft:amethyst_cluster[facing=south,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=south]", + "minecraft:amethyst_cluster[facing=west,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=west]", + "minecraft:amethyst_cluster[facing=west,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=west]", + "minecraft:amethyst_cluster[facing=up,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=up]", + "minecraft:amethyst_cluster[facing=up,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=up]", + "minecraft:amethyst_cluster[facing=down,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=down]", + "minecraft:amethyst_cluster[facing=down,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=down]", + "minecraft:large_amethyst_bud[facing=north,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=north]", + "minecraft:large_amethyst_bud[facing=north,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=north]", + "minecraft:large_amethyst_bud[facing=east,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=east]", + "minecraft:large_amethyst_bud[facing=east,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=east]", + "minecraft:large_amethyst_bud[facing=south,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=south]", + "minecraft:large_amethyst_bud[facing=south,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=south]", + "minecraft:large_amethyst_bud[facing=west,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=west]", + "minecraft:large_amethyst_bud[facing=west,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=west]", + "minecraft:large_amethyst_bud[facing=up,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=up]", + "minecraft:large_amethyst_bud[facing=up,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=up]", + "minecraft:large_amethyst_bud[facing=down,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=down]", + "minecraft:large_amethyst_bud[facing=down,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=down]", + "minecraft:medium_amethyst_bud[facing=north,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=north]", + "minecraft:medium_amethyst_bud[facing=north,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=north]", + "minecraft:medium_amethyst_bud[facing=east,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=east]", + "minecraft:medium_amethyst_bud[facing=east,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=east]", + "minecraft:medium_amethyst_bud[facing=south,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=south]", + "minecraft:medium_amethyst_bud[facing=south,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=south]", + "minecraft:medium_amethyst_bud[facing=west,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=west]", + "minecraft:medium_amethyst_bud[facing=west,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=west]", + "minecraft:medium_amethyst_bud[facing=up,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=up]", + "minecraft:medium_amethyst_bud[facing=up,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=up]", + "minecraft:medium_amethyst_bud[facing=down,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=down]", + "minecraft:medium_amethyst_bud[facing=down,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=down]", + "minecraft:small_amethyst_bud[facing=north,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=north]", + "minecraft:small_amethyst_bud[facing=north,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=north]", + "minecraft:small_amethyst_bud[facing=east,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=east]", + "minecraft:small_amethyst_bud[facing=east,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=east]", + "minecraft:small_amethyst_bud[facing=south,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=south]", + "minecraft:small_amethyst_bud[facing=south,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=south]", + "minecraft:small_amethyst_bud[facing=west,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=west]", + "minecraft:small_amethyst_bud[facing=west,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=west]", + "minecraft:small_amethyst_bud[facing=up,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=up]", + "minecraft:small_amethyst_bud[facing=up,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=up]", + "minecraft:small_amethyst_bud[facing=down,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=down]", + "minecraft:small_amethyst_bud[facing=down,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=down]", + "minecraft:tuff[]": "minecraft:tuff[]", + "minecraft:tuff_slab[type=top,waterlogged=true]": "minecraft:tuff_slab[minecraft:vertical_half=top]", + "minecraft:tuff_slab[type=top,waterlogged=false]": "minecraft:tuff_slab[minecraft:vertical_half=top]", + "minecraft:tuff_slab[type=bottom,waterlogged=true]": "minecraft:tuff_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_slab[type=bottom,waterlogged=false]": "minecraft:tuff_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_slab[type=double,waterlogged=true]": "minecraft:tuff_double_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_slab[type=double,waterlogged=false]": "minecraft:tuff_double_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff[]": "minecraft:polished_tuff[]", + "minecraft:polished_tuff_slab[type=top,waterlogged=true]": "minecraft:polished_tuff_slab[minecraft:vertical_half=top]", + "minecraft:polished_tuff_slab[type=top,waterlogged=false]": "minecraft:polished_tuff_slab[minecraft:vertical_half=top]", + "minecraft:polished_tuff_slab[type=bottom,waterlogged=true]": "minecraft:polished_tuff_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_tuff_slab[type=bottom,waterlogged=false]": "minecraft:polished_tuff_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_tuff_slab[type=double,waterlogged=true]": "minecraft:polished_tuff_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_tuff_slab[type=double,waterlogged=false]": "minecraft:polished_tuff_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:chiseled_tuff[]": "minecraft:chiseled_tuff[]", + "minecraft:tuff_bricks[]": "minecraft:tuff_bricks[]", + "minecraft:tuff_brick_slab[type=top,waterlogged=true]": "minecraft:tuff_brick_slab[minecraft:vertical_half=top]", + "minecraft:tuff_brick_slab[type=top,waterlogged=false]": "minecraft:tuff_brick_slab[minecraft:vertical_half=top]", + "minecraft:tuff_brick_slab[type=bottom,waterlogged=true]": "minecraft:tuff_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_brick_slab[type=bottom,waterlogged=false]": "minecraft:tuff_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_brick_slab[type=double,waterlogged=true]": "minecraft:tuff_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_brick_slab[type=double,waterlogged=false]": "minecraft:tuff_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:chiseled_tuff_bricks[]": "minecraft:chiseled_tuff_bricks[]", + "minecraft:calcite[]": "minecraft:calcite[]", + "minecraft:tinted_glass[]": "minecraft:tinted_glass[]", + "minecraft:powder_snow[]": "minecraft:powder_snow[]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:sculk[]": "minecraft:sculk[]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=63]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=55]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=63]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=55]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=61]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=53]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=61]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=53]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=59]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=51]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=59]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=51]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=57]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=49]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=57]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=49]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=47]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=39]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=47]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=39]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=45]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=37]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=45]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=37]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=43]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=35]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=43]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=35]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=41]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=33]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=41]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=33]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=31]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=23]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=31]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=23]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=29]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=21]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=29]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=21]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=27]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=19]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=27]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=19]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=25]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=17]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=25]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=17]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=15]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=7]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=15]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=7]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=13]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=5]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=13]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=5]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=11]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=3]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=11]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=3]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=9]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=1]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=9]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=1]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=62]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=54]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=62]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=54]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=60]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=52]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=60]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=52]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=58]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=50]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=58]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=50]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=56]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=48]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=56]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=48]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=46]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=38]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=46]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=38]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=44]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=36]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=44]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=36]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=42]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=34]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=42]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=34]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=40]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=32]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=40]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=32]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=30]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=22]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=30]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=22]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=28]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=20]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=28]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=20]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=26]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=18]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=26]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=18]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=24]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=16]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=24]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=16]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=14]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=6]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=14]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=6]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=12]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=4]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=12]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=4]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=10]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=2]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=10]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=2]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=8]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=0]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=8]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=0]", + "minecraft:sculk_catalyst[bloom=true]": "minecraft:sculk_catalyst[bloom=true]", + "minecraft:sculk_catalyst[bloom=false]": "minecraft:sculk_catalyst[bloom=false]", + "minecraft:sculk_shrieker[can_summon=true,shrieking=true,waterlogged=true]": "minecraft:sculk_shrieker[active=true,can_summon=true]", + "minecraft:sculk_shrieker[can_summon=true,shrieking=true,waterlogged=false]": "minecraft:sculk_shrieker[active=true,can_summon=true]", + "minecraft:sculk_shrieker[can_summon=true,shrieking=false,waterlogged=true]": "minecraft:sculk_shrieker[active=false,can_summon=true]", + "minecraft:sculk_shrieker[can_summon=true,shrieking=false,waterlogged=false]": "minecraft:sculk_shrieker[active=false,can_summon=true]", + "minecraft:sculk_shrieker[can_summon=false,shrieking=true,waterlogged=true]": "minecraft:sculk_shrieker[active=true,can_summon=false]", + "minecraft:sculk_shrieker[can_summon=false,shrieking=true,waterlogged=false]": "minecraft:sculk_shrieker[active=true,can_summon=false]", + "minecraft:sculk_shrieker[can_summon=false,shrieking=false,waterlogged=true]": "minecraft:sculk_shrieker[active=false,can_summon=false]", + "minecraft:sculk_shrieker[can_summon=false,shrieking=false,waterlogged=false]": "minecraft:sculk_shrieker[active=false,can_summon=false]", + "minecraft:copper_block[]": "minecraft:copper_block[]", + "minecraft:exposed_copper[]": "minecraft:exposed_copper[]", + "minecraft:weathered_copper[]": "minecraft:weathered_copper[]", + "minecraft:oxidized_copper[]": "minecraft:oxidized_copper[]", + "minecraft:copper_ore[]": "minecraft:copper_ore[]", + "minecraft:deepslate_copper_ore[]": "minecraft:deepslate_copper_ore[]", + "minecraft:oxidized_cut_copper[]": "minecraft:oxidized_cut_copper[]", + "minecraft:weathered_cut_copper[]": "minecraft:weathered_cut_copper[]", + "minecraft:exposed_cut_copper[]": "minecraft:exposed_cut_copper[]", + "minecraft:cut_copper[]": "minecraft:cut_copper[]", + "minecraft:oxidized_chiseled_copper[]": "minecraft:oxidized_chiseled_copper[]", + "minecraft:weathered_chiseled_copper[]": "minecraft:weathered_chiseled_copper[]", + "minecraft:exposed_chiseled_copper[]": "minecraft:exposed_chiseled_copper[]", + "minecraft:chiseled_copper[]": "minecraft:chiseled_copper[]", + "minecraft:waxed_oxidized_chiseled_copper[]": "minecraft:waxed_oxidized_chiseled_copper[]", + "minecraft:waxed_weathered_chiseled_copper[]": "minecraft:waxed_weathered_chiseled_copper[]", + "minecraft:waxed_exposed_chiseled_copper[]": "minecraft:waxed_exposed_chiseled_copper[]", + "minecraft:waxed_chiseled_copper[]": "minecraft:waxed_chiseled_copper[]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_slab[type=top,waterlogged=true]": "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:oxidized_cut_copper_slab[type=top,waterlogged=false]": "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:oxidized_cut_copper_slab[type=double,waterlogged=true]": "minecraft:oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:oxidized_cut_copper_slab[type=double,waterlogged=false]": "minecraft:oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:weathered_cut_copper_slab[type=top,waterlogged=true]": "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:weathered_cut_copper_slab[type=top,waterlogged=false]": "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:weathered_cut_copper_slab[type=double,waterlogged=true]": "minecraft:weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:weathered_cut_copper_slab[type=double,waterlogged=false]": "minecraft:weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:exposed_cut_copper_slab[type=top,waterlogged=true]": "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:exposed_cut_copper_slab[type=top,waterlogged=false]": "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:exposed_cut_copper_slab[type=double,waterlogged=true]": "minecraft:exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:exposed_cut_copper_slab[type=double,waterlogged=false]": "minecraft:exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_copper_slab[type=top,waterlogged=true]": "minecraft:cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:cut_copper_slab[type=top,waterlogged=false]": "minecraft:cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_copper_slab[type=double,waterlogged=true]": "minecraft:double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_copper_slab[type=double,waterlogged=false]": "minecraft:double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_copper_block[]": "minecraft:waxed_copper[]", + "minecraft:waxed_weathered_copper[]": "minecraft:waxed_weathered_copper[]", + "minecraft:waxed_exposed_copper[]": "minecraft:waxed_exposed_copper[]", + "minecraft:waxed_oxidized_copper[]": "minecraft:waxed_oxidized_copper[]", + "minecraft:waxed_oxidized_cut_copper[]": "minecraft:waxed_oxidized_cut_copper[]", + "minecraft:waxed_weathered_cut_copper[]": "minecraft:waxed_weathered_cut_copper[]", + "minecraft:waxed_exposed_cut_copper[]": "minecraft:waxed_exposed_cut_copper[]", + "minecraft:waxed_cut_copper[]": "minecraft:waxed_cut_copper[]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=true]": "minecraft:waxed_oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=false]": "minecraft:waxed_oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=true]": "minecraft:waxed_weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=false]": "minecraft:waxed_weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=true]": "minecraft:waxed_exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=false]": "minecraft:waxed_exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_cut_copper_slab[type=top,waterlogged=true]": "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_cut_copper_slab[type=top,waterlogged=false]": "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_cut_copper_slab[type=double,waterlogged=true]": "minecraft:waxed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_cut_copper_slab[type=double,waterlogged=false]": "minecraft:waxed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=east,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=west,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=north,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=false,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[door_hinge_bit=true,minecraft:cardinal_direction=south,open_bit=false,upper_block_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:copper_grate[waterlogged=true]": "minecraft:copper_grate[]", + "minecraft:copper_grate[waterlogged=false]": "minecraft:copper_grate[]", + "minecraft:exposed_copper_grate[waterlogged=true]": "minecraft:exposed_copper_grate[]", + "minecraft:exposed_copper_grate[waterlogged=false]": "minecraft:exposed_copper_grate[]", + "minecraft:weathered_copper_grate[waterlogged=true]": "minecraft:weathered_copper_grate[]", + "minecraft:weathered_copper_grate[waterlogged=false]": "minecraft:weathered_copper_grate[]", + "minecraft:oxidized_copper_grate[waterlogged=true]": "minecraft:oxidized_copper_grate[]", + "minecraft:oxidized_copper_grate[waterlogged=false]": "minecraft:oxidized_copper_grate[]", + "minecraft:waxed_copper_grate[waterlogged=true]": "minecraft:waxed_copper_grate[]", + "minecraft:waxed_copper_grate[waterlogged=false]": "minecraft:waxed_copper_grate[]", + "minecraft:waxed_exposed_copper_grate[waterlogged=true]": "minecraft:waxed_exposed_copper_grate[]", + "minecraft:waxed_exposed_copper_grate[waterlogged=false]": "minecraft:waxed_exposed_copper_grate[]", + "minecraft:waxed_weathered_copper_grate[waterlogged=true]": "minecraft:waxed_weathered_copper_grate[]", + "minecraft:waxed_weathered_copper_grate[waterlogged=false]": "minecraft:waxed_weathered_copper_grate[]", + "minecraft:waxed_oxidized_copper_grate[waterlogged=true]": "minecraft:waxed_oxidized_copper_grate[]", + "minecraft:waxed_oxidized_copper_grate[waterlogged=false]": "minecraft:waxed_oxidized_copper_grate[]", + "minecraft:copper_bulb[lit=true,powered=true]": "minecraft:copper_bulb[lit=true,powered_bit=true]", + "minecraft:copper_bulb[lit=true,powered=false]": "minecraft:copper_bulb[lit=true,powered_bit=false]", + "minecraft:copper_bulb[lit=false,powered=true]": "minecraft:copper_bulb[lit=false,powered_bit=true]", + "minecraft:copper_bulb[lit=false,powered=false]": "minecraft:copper_bulb[lit=false,powered_bit=false]", + "minecraft:exposed_copper_bulb[lit=true,powered=true]": "minecraft:exposed_copper_bulb[lit=true,powered_bit=true]", + "minecraft:exposed_copper_bulb[lit=true,powered=false]": "minecraft:exposed_copper_bulb[lit=true,powered_bit=false]", + "minecraft:exposed_copper_bulb[lit=false,powered=true]": "minecraft:exposed_copper_bulb[lit=false,powered_bit=true]", + "minecraft:exposed_copper_bulb[lit=false,powered=false]": "minecraft:exposed_copper_bulb[lit=false,powered_bit=false]", + "minecraft:weathered_copper_bulb[lit=true,powered=true]": "minecraft:weathered_copper_bulb[lit=true,powered_bit=true]", + "minecraft:weathered_copper_bulb[lit=true,powered=false]": "minecraft:weathered_copper_bulb[lit=true,powered_bit=false]", + "minecraft:weathered_copper_bulb[lit=false,powered=true]": "minecraft:weathered_copper_bulb[lit=false,powered_bit=true]", + "minecraft:weathered_copper_bulb[lit=false,powered=false]": "minecraft:weathered_copper_bulb[lit=false,powered_bit=false]", + "minecraft:oxidized_copper_bulb[lit=true,powered=true]": "minecraft:oxidized_copper_bulb[lit=true,powered_bit=true]", + "minecraft:oxidized_copper_bulb[lit=true,powered=false]": "minecraft:oxidized_copper_bulb[lit=true,powered_bit=false]", + "minecraft:oxidized_copper_bulb[lit=false,powered=true]": "minecraft:oxidized_copper_bulb[lit=false,powered_bit=true]", + "minecraft:oxidized_copper_bulb[lit=false,powered=false]": "minecraft:oxidized_copper_bulb[lit=false,powered_bit=false]", + "minecraft:waxed_copper_bulb[lit=true,powered=true]": "minecraft:waxed_copper_bulb[lit=true,powered_bit=true]", + "minecraft:waxed_copper_bulb[lit=true,powered=false]": "minecraft:waxed_copper_bulb[lit=true,powered_bit=false]", + "minecraft:waxed_copper_bulb[lit=false,powered=true]": "minecraft:waxed_copper_bulb[lit=false,powered_bit=true]", + "minecraft:waxed_copper_bulb[lit=false,powered=false]": "minecraft:waxed_copper_bulb[lit=false,powered_bit=false]", + "minecraft:waxed_exposed_copper_bulb[lit=true,powered=true]": "minecraft:waxed_exposed_copper_bulb[lit=true,powered_bit=true]", + "minecraft:waxed_exposed_copper_bulb[lit=true,powered=false]": "minecraft:waxed_exposed_copper_bulb[lit=true,powered_bit=false]", + "minecraft:waxed_exposed_copper_bulb[lit=false,powered=true]": "minecraft:waxed_exposed_copper_bulb[lit=false,powered_bit=true]", + "minecraft:waxed_exposed_copper_bulb[lit=false,powered=false]": "minecraft:waxed_exposed_copper_bulb[lit=false,powered_bit=false]", + "minecraft:waxed_weathered_copper_bulb[lit=true,powered=true]": "minecraft:waxed_weathered_copper_bulb[lit=true,powered_bit=true]", + "minecraft:waxed_weathered_copper_bulb[lit=true,powered=false]": "minecraft:waxed_weathered_copper_bulb[lit=true,powered_bit=false]", + "minecraft:waxed_weathered_copper_bulb[lit=false,powered=true]": "minecraft:waxed_weathered_copper_bulb[lit=false,powered_bit=true]", + "minecraft:waxed_weathered_copper_bulb[lit=false,powered=false]": "minecraft:waxed_weathered_copper_bulb[lit=false,powered_bit=false]", + "minecraft:waxed_oxidized_copper_bulb[lit=true,powered=true]": "minecraft:waxed_oxidized_copper_bulb[lit=true,powered_bit=true]", + "minecraft:waxed_oxidized_copper_bulb[lit=true,powered=false]": "minecraft:waxed_oxidized_copper_bulb[lit=true,powered_bit=false]", + "minecraft:waxed_oxidized_copper_bulb[lit=false,powered=true]": "minecraft:waxed_oxidized_copper_bulb[lit=false,powered_bit=true]", + "minecraft:waxed_oxidized_copper_bulb[lit=false,powered=false]": "minecraft:waxed_oxidized_copper_bulb[lit=false,powered_bit=false]", + "minecraft:lightning_rod[facing=north,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=2]", + "minecraft:lightning_rod[facing=north,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=2]", + "minecraft:lightning_rod[facing=north,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=2]", + "minecraft:lightning_rod[facing=north,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=2]", + "minecraft:lightning_rod[facing=east,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=5]", + "minecraft:lightning_rod[facing=east,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=5]", + "minecraft:lightning_rod[facing=east,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=5]", + "minecraft:lightning_rod[facing=east,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=5]", + "minecraft:lightning_rod[facing=south,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=3]", + "minecraft:lightning_rod[facing=south,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=3]", + "minecraft:lightning_rod[facing=south,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=3]", + "minecraft:lightning_rod[facing=south,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=3]", + "minecraft:lightning_rod[facing=west,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=4]", + "minecraft:lightning_rod[facing=west,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=4]", + "minecraft:lightning_rod[facing=west,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=4]", + "minecraft:lightning_rod[facing=west,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=4]", + "minecraft:lightning_rod[facing=up,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=1]", + "minecraft:lightning_rod[facing=up,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=1]", + "minecraft:lightning_rod[facing=up,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=1]", + "minecraft:lightning_rod[facing=up,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=1]", + "minecraft:lightning_rod[facing=down,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=0]", + "minecraft:lightning_rod[facing=down,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=0]", + "minecraft:lightning_rod[facing=down,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=0]", + "minecraft:lightning_rod[facing=down,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=0]", + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=false]", + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=false]", + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=true]", + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=true]", + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=false]", + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=false]", + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=true]", + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=true]", + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=false]", + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=false]", + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=true]", + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=true]", + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=false]", + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=false]", + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=true]", + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=true]", + "minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=false]", + "minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=false]", + "minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=true]", + "minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=true]", + "minecraft:dripstone_block[]": "minecraft:dripstone_block[]", + "minecraft:cave_vines[age=0,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=0]", + "minecraft:cave_vines[age=0,berries=false]": "minecraft:cave_vines[growing_plant_age=0]", + "minecraft:cave_vines[age=1,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=1]", + "minecraft:cave_vines[age=1,berries=false]": "minecraft:cave_vines[growing_plant_age=1]", + "minecraft:cave_vines[age=2,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=2]", + "minecraft:cave_vines[age=2,berries=false]": "minecraft:cave_vines[growing_plant_age=2]", + "minecraft:cave_vines[age=3,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=3]", + "minecraft:cave_vines[age=3,berries=false]": "minecraft:cave_vines[growing_plant_age=3]", + "minecraft:cave_vines[age=4,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=4]", + "minecraft:cave_vines[age=4,berries=false]": "minecraft:cave_vines[growing_plant_age=4]", + "minecraft:cave_vines[age=5,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=5]", + "minecraft:cave_vines[age=5,berries=false]": "minecraft:cave_vines[growing_plant_age=5]", + "minecraft:cave_vines[age=6,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=6]", + "minecraft:cave_vines[age=6,berries=false]": "minecraft:cave_vines[growing_plant_age=6]", + "minecraft:cave_vines[age=7,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=7]", + "minecraft:cave_vines[age=7,berries=false]": "minecraft:cave_vines[growing_plant_age=7]", + "minecraft:cave_vines[age=8,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=8]", + "minecraft:cave_vines[age=8,berries=false]": "minecraft:cave_vines[growing_plant_age=8]", + "minecraft:cave_vines[age=9,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=9]", + "minecraft:cave_vines[age=9,berries=false]": "minecraft:cave_vines[growing_plant_age=9]", + "minecraft:cave_vines[age=10,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=10]", + "minecraft:cave_vines[age=10,berries=false]": "minecraft:cave_vines[growing_plant_age=10]", + "minecraft:cave_vines[age=11,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=11]", + "minecraft:cave_vines[age=11,berries=false]": "minecraft:cave_vines[growing_plant_age=11]", + "minecraft:cave_vines[age=12,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=12]", + "minecraft:cave_vines[age=12,berries=false]": "minecraft:cave_vines[growing_plant_age=12]", + "minecraft:cave_vines[age=13,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=13]", + "minecraft:cave_vines[age=13,berries=false]": "minecraft:cave_vines[growing_plant_age=13]", + "minecraft:cave_vines[age=14,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=14]", + "minecraft:cave_vines[age=14,berries=false]": "minecraft:cave_vines[growing_plant_age=14]", + "minecraft:cave_vines[age=15,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=15]", + "minecraft:cave_vines[age=15,berries=false]": "minecraft:cave_vines[growing_plant_age=15]", + "minecraft:cave_vines[age=16,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=16]", + "minecraft:cave_vines[age=16,berries=false]": "minecraft:cave_vines[growing_plant_age=16]", + "minecraft:cave_vines[age=17,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=17]", + "minecraft:cave_vines[age=17,berries=false]": "minecraft:cave_vines[growing_plant_age=17]", + "minecraft:cave_vines[age=18,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=18]", + "minecraft:cave_vines[age=18,berries=false]": "minecraft:cave_vines[growing_plant_age=18]", + "minecraft:cave_vines[age=19,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=19]", + "minecraft:cave_vines[age=19,berries=false]": "minecraft:cave_vines[growing_plant_age=19]", + "minecraft:cave_vines[age=20,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=20]", + "minecraft:cave_vines[age=20,berries=false]": "minecraft:cave_vines[growing_plant_age=20]", + "minecraft:cave_vines[age=21,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=21]", + "minecraft:cave_vines[age=21,berries=false]": "minecraft:cave_vines[growing_plant_age=21]", + "minecraft:cave_vines[age=22,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=22]", + "minecraft:cave_vines[age=22,berries=false]": "minecraft:cave_vines[growing_plant_age=22]", + "minecraft:cave_vines[age=23,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=23]", + "minecraft:cave_vines[age=23,berries=false]": "minecraft:cave_vines[growing_plant_age=23]", + "minecraft:cave_vines[age=24,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=24]", + "minecraft:cave_vines[age=24,berries=false]": "minecraft:cave_vines[growing_plant_age=24]", + "minecraft:cave_vines[age=25,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=25]", + "minecraft:cave_vines[age=25,berries=false]": "minecraft:cave_vines[growing_plant_age=25]", + "minecraft:cave_vines_plant[berries=true]": "minecraft:cave_vines_body_with_berries[growing_plant_age=0]", + "minecraft:cave_vines_plant[berries=false]": "minecraft:cave_vines[growing_plant_age=0]", + "minecraft:spore_blossom[]": "minecraft:spore_blossom[]", + "minecraft:azalea[]": "minecraft:azalea[]", + "minecraft:flowering_azalea[]": "minecraft:flowering_azalea[]", + "minecraft:moss_carpet[]": "minecraft:moss_carpet[]", + "minecraft:pink_petals[facing=north,flower_amount=1]": "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=north]", + "minecraft:pink_petals[facing=north,flower_amount=2]": "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=north]", + "minecraft:pink_petals[facing=north,flower_amount=3]": "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=north]", + "minecraft:pink_petals[facing=north,flower_amount=4]": "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=north]", + "minecraft:pink_petals[facing=south,flower_amount=1]": "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=south]", + "minecraft:pink_petals[facing=south,flower_amount=2]": "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=south]", + "minecraft:pink_petals[facing=south,flower_amount=3]": "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=south]", + "minecraft:pink_petals[facing=south,flower_amount=4]": "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=south]", + "minecraft:pink_petals[facing=west,flower_amount=1]": "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=west]", + "minecraft:pink_petals[facing=west,flower_amount=2]": "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=west]", + "minecraft:pink_petals[facing=west,flower_amount=3]": "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=west]", + "minecraft:pink_petals[facing=west,flower_amount=4]": "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=west]", + "minecraft:pink_petals[facing=east,flower_amount=1]": "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=east]", + "minecraft:pink_petals[facing=east,flower_amount=2]": "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=east]", + "minecraft:pink_petals[facing=east,flower_amount=3]": "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=east]", + "minecraft:pink_petals[facing=east,flower_amount=4]": "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=east]", + "minecraft:wildflowers[facing=north,flower_amount=1]": "minecraft:wildflowers[growth=0,minecraft:cardinal_direction=north]", + "minecraft:wildflowers[facing=north,flower_amount=2]": "minecraft:wildflowers[growth=1,minecraft:cardinal_direction=north]", + "minecraft:wildflowers[facing=north,flower_amount=3]": "minecraft:wildflowers[growth=2,minecraft:cardinal_direction=north]", + "minecraft:wildflowers[facing=north,flower_amount=4]": "minecraft:wildflowers[growth=3,minecraft:cardinal_direction=north]", + "minecraft:wildflowers[facing=south,flower_amount=1]": "minecraft:wildflowers[growth=0,minecraft:cardinal_direction=south]", + "minecraft:wildflowers[facing=south,flower_amount=2]": "minecraft:wildflowers[growth=1,minecraft:cardinal_direction=south]", + "minecraft:wildflowers[facing=south,flower_amount=3]": "minecraft:wildflowers[growth=2,minecraft:cardinal_direction=south]", + "minecraft:wildflowers[facing=south,flower_amount=4]": "minecraft:wildflowers[growth=3,minecraft:cardinal_direction=south]", + "minecraft:wildflowers[facing=west,flower_amount=1]": "minecraft:wildflowers[growth=0,minecraft:cardinal_direction=west]", + "minecraft:wildflowers[facing=west,flower_amount=2]": "minecraft:wildflowers[growth=1,minecraft:cardinal_direction=west]", + "minecraft:wildflowers[facing=west,flower_amount=3]": "minecraft:wildflowers[growth=2,minecraft:cardinal_direction=west]", + "minecraft:wildflowers[facing=west,flower_amount=4]": "minecraft:wildflowers[growth=3,minecraft:cardinal_direction=west]", + "minecraft:wildflowers[facing=east,flower_amount=1]": "minecraft:wildflowers[growth=0,minecraft:cardinal_direction=east]", + "minecraft:wildflowers[facing=east,flower_amount=2]": "minecraft:wildflowers[growth=1,minecraft:cardinal_direction=east]", + "minecraft:wildflowers[facing=east,flower_amount=3]": "minecraft:wildflowers[growth=2,minecraft:cardinal_direction=east]", + "minecraft:wildflowers[facing=east,flower_amount=4]": "minecraft:wildflowers[growth=3,minecraft:cardinal_direction=east]", + "minecraft:leaf_litter[facing=north,segment_amount=1]": "minecraft:leaf_litter[growth=0,minecraft:cardinal_direction=north]", + "minecraft:leaf_litter[facing=north,segment_amount=2]": "minecraft:leaf_litter[growth=1,minecraft:cardinal_direction=north]", + "minecraft:leaf_litter[facing=north,segment_amount=3]": "minecraft:leaf_litter[growth=2,minecraft:cardinal_direction=north]", + "minecraft:leaf_litter[facing=north,segment_amount=4]": "minecraft:leaf_litter[growth=3,minecraft:cardinal_direction=north]", + "minecraft:leaf_litter[facing=south,segment_amount=1]": "minecraft:leaf_litter[growth=0,minecraft:cardinal_direction=south]", + "minecraft:leaf_litter[facing=south,segment_amount=2]": "minecraft:leaf_litter[growth=1,minecraft:cardinal_direction=south]", + "minecraft:leaf_litter[facing=south,segment_amount=3]": "minecraft:leaf_litter[growth=2,minecraft:cardinal_direction=south]", + "minecraft:leaf_litter[facing=south,segment_amount=4]": "minecraft:leaf_litter[growth=3,minecraft:cardinal_direction=south]", + "minecraft:leaf_litter[facing=west,segment_amount=1]": "minecraft:leaf_litter[growth=0,minecraft:cardinal_direction=west]", + "minecraft:leaf_litter[facing=west,segment_amount=2]": "minecraft:leaf_litter[growth=1,minecraft:cardinal_direction=west]", + "minecraft:leaf_litter[facing=west,segment_amount=3]": "minecraft:leaf_litter[growth=2,minecraft:cardinal_direction=west]", + "minecraft:leaf_litter[facing=west,segment_amount=4]": "minecraft:leaf_litter[growth=3,minecraft:cardinal_direction=west]", + "minecraft:leaf_litter[facing=east,segment_amount=1]": "minecraft:leaf_litter[growth=0,minecraft:cardinal_direction=east]", + "minecraft:leaf_litter[facing=east,segment_amount=2]": "minecraft:leaf_litter[growth=1,minecraft:cardinal_direction=east]", + "minecraft:leaf_litter[facing=east,segment_amount=3]": "minecraft:leaf_litter[growth=2,minecraft:cardinal_direction=east]", + "minecraft:leaf_litter[facing=east,segment_amount=4]": "minecraft:leaf_litter[growth=3,minecraft:cardinal_direction=east]", + "minecraft:moss_block[]": "minecraft:moss_block[]", + "minecraft:big_dripleaf[facing=north,tilt=none,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=none,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=unstable,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=unstable,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=partial,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=partial,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=full,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=full,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=south,tilt=none,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=none,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=unstable,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=unstable,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=partial,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=partial,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=full,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=full,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=west,tilt=none,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=none,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=unstable,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=unstable,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=partial,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=partial,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=full,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=full,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=east,tilt=none,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=none,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=unstable,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=unstable,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=partial,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=partial,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=full,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=full,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf_stem[facing=north,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf_stem[facing=north,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf_stem[facing=south,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf_stem[facing=south,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf_stem[facing=west,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf_stem[facing=west,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf_stem[facing=east,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf_stem[facing=east,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]", + "minecraft:small_dripleaf[facing=north,half=upper,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=north,half=upper,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=north,half=lower,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=north,half=lower,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=south,half=upper,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=south,half=upper,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=south,half=lower,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=south,half=lower,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=west,half=upper,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=west,half=upper,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=west,half=lower,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=west,half=lower,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=east,half=upper,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=east,half=upper,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=east,half=lower,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=east,half=lower,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=false]", + "minecraft:hanging_roots[waterlogged=true]": "minecraft:hanging_roots[]", + "minecraft:hanging_roots[waterlogged=false]": "minecraft:hanging_roots[]", + "minecraft:rooted_dirt[]": "minecraft:dirt_with_roots[]", + "minecraft:mud[]": "minecraft:mud[]", + "minecraft:deepslate[axis=x]": "minecraft:deepslate[pillar_axis=x]", + "minecraft:deepslate[axis=y]": "minecraft:deepslate[pillar_axis=y]", + "minecraft:deepslate[axis=z]": "minecraft:deepslate[pillar_axis=z]", + "minecraft:cobbled_deepslate[]": "minecraft:cobbled_deepslate[]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_slab[type=top,waterlogged=true]": "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=top]", + "minecraft:cobbled_deepslate_slab[type=top,waterlogged=false]": "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=top]", + "minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=true]": "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=bottom]", + "minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=false]": "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=bottom]", + "minecraft:cobbled_deepslate_slab[type=double,waterlogged=true]": "minecraft:cobbled_deepslate_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cobbled_deepslate_slab[type=double,waterlogged=false]": "minecraft:cobbled_deepslate_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate[]": "minecraft:polished_deepslate[]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_slab[type=top,waterlogged=true]": "minecraft:polished_deepslate_slab[minecraft:vertical_half=top]", + "minecraft:polished_deepslate_slab[type=top,waterlogged=false]": "minecraft:polished_deepslate_slab[minecraft:vertical_half=top]", + "minecraft:polished_deepslate_slab[type=bottom,waterlogged=true]": "minecraft:polished_deepslate_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_deepslate_slab[type=bottom,waterlogged=false]": "minecraft:polished_deepslate_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_deepslate_slab[type=double,waterlogged=true]": "minecraft:polished_deepslate_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_deepslate_slab[type=double,waterlogged=false]": "minecraft:polished_deepslate_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tiles[]": "minecraft:deepslate_tiles[]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_slab[type=top,waterlogged=true]": "minecraft:deepslate_tile_slab[minecraft:vertical_half=top]", + "minecraft:deepslate_tile_slab[type=top,waterlogged=false]": "minecraft:deepslate_tile_slab[minecraft:vertical_half=top]", + "minecraft:deepslate_tile_slab[type=bottom,waterlogged=true]": "minecraft:deepslate_tile_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_tile_slab[type=bottom,waterlogged=false]": "minecraft:deepslate_tile_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_tile_slab[type=double,waterlogged=true]": "minecraft:deepslate_tile_double_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_tile_slab[type=double,waterlogged=false]": "minecraft:deepslate_tile_double_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_bricks[]": "minecraft:deepslate_bricks[]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_slab[type=top,waterlogged=true]": "minecraft:deepslate_brick_slab[minecraft:vertical_half=top]", + "minecraft:deepslate_brick_slab[type=top,waterlogged=false]": "minecraft:deepslate_brick_slab[minecraft:vertical_half=top]", + "minecraft:deepslate_brick_slab[type=bottom,waterlogged=true]": "minecraft:deepslate_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_brick_slab[type=bottom,waterlogged=false]": "minecraft:deepslate_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_brick_slab[type=double,waterlogged=true]": "minecraft:deepslate_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_brick_slab[type=double,waterlogged=false]": "minecraft:deepslate_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:chiseled_deepslate[]": "minecraft:chiseled_deepslate[]", + "minecraft:cracked_deepslate_bricks[]": "minecraft:cracked_deepslate_bricks[]", + "minecraft:cracked_deepslate_tiles[]": "minecraft:cracked_deepslate_tiles[]", + "minecraft:infested_deepslate[axis=x]": "minecraft:infested_deepslate[pillar_axis=x]", + "minecraft:infested_deepslate[axis=y]": "minecraft:infested_deepslate[pillar_axis=y]", + "minecraft:infested_deepslate[axis=z]": "minecraft:infested_deepslate[pillar_axis=z]", + "minecraft:smooth_basalt[]": "minecraft:smooth_basalt[]", + "minecraft:raw_iron_block[]": "minecraft:raw_iron_block[]", + "minecraft:raw_copper_block[]": "minecraft:raw_copper_block[]", + "minecraft:raw_gold_block[]": "minecraft:raw_gold_block[]", + "minecraft:potted_azalea_bush[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_flowering_azalea_bush[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:ochre_froglight[axis=x]": "minecraft:ochre_froglight[pillar_axis=x]", + "minecraft:ochre_froglight[axis=y]": "minecraft:ochre_froglight[pillar_axis=y]", + "minecraft:ochre_froglight[axis=z]": "minecraft:ochre_froglight[pillar_axis=z]", + "minecraft:verdant_froglight[axis=x]": "minecraft:verdant_froglight[pillar_axis=x]", + "minecraft:verdant_froglight[axis=y]": "minecraft:verdant_froglight[pillar_axis=y]", + "minecraft:verdant_froglight[axis=z]": "minecraft:verdant_froglight[pillar_axis=z]", + "minecraft:pearlescent_froglight[axis=x]": "minecraft:pearlescent_froglight[pillar_axis=x]", + "minecraft:pearlescent_froglight[axis=y]": "minecraft:pearlescent_froglight[pillar_axis=y]", + "minecraft:pearlescent_froglight[axis=z]": "minecraft:pearlescent_froglight[pillar_axis=z]", + "minecraft:frogspawn[]": "minecraft:frog_spawn[]", + "minecraft:reinforced_deepslate[]": "minecraft:reinforced_deepslate[]", + "minecraft:decorated_pot[cracked=true,facing=north,waterlogged=true]": "minecraft:decorated_pot[direction=0]", + "minecraft:decorated_pot[cracked=true,facing=north,waterlogged=false]": "minecraft:decorated_pot[direction=0]", + "minecraft:decorated_pot[cracked=true,facing=south,waterlogged=true]": "minecraft:decorated_pot[direction=2]", + "minecraft:decorated_pot[cracked=true,facing=south,waterlogged=false]": "minecraft:decorated_pot[direction=2]", + "minecraft:decorated_pot[cracked=true,facing=west,waterlogged=true]": "minecraft:decorated_pot[direction=3]", + "minecraft:decorated_pot[cracked=true,facing=west,waterlogged=false]": "minecraft:decorated_pot[direction=3]", + "minecraft:decorated_pot[cracked=true,facing=east,waterlogged=true]": "minecraft:decorated_pot[direction=1]", + "minecraft:decorated_pot[cracked=true,facing=east,waterlogged=false]": "minecraft:decorated_pot[direction=1]", + "minecraft:decorated_pot[cracked=false,facing=north,waterlogged=true]": "minecraft:decorated_pot[direction=0]", + "minecraft:decorated_pot[cracked=false,facing=north,waterlogged=false]": "minecraft:decorated_pot[direction=0]", + "minecraft:decorated_pot[cracked=false,facing=south,waterlogged=true]": "minecraft:decorated_pot[direction=2]", + "minecraft:decorated_pot[cracked=false,facing=south,waterlogged=false]": "minecraft:decorated_pot[direction=2]", + "minecraft:decorated_pot[cracked=false,facing=west,waterlogged=true]": "minecraft:decorated_pot[direction=3]", + "minecraft:decorated_pot[cracked=false,facing=west,waterlogged=false]": "minecraft:decorated_pot[direction=3]", + "minecraft:decorated_pot[cracked=false,facing=east,waterlogged=true]": "minecraft:decorated_pot[direction=1]", + "minecraft:decorated_pot[cracked=false,facing=east,waterlogged=false]": "minecraft:decorated_pot[direction=1]", + "minecraft:crafter[crafting=true,orientation=down_east,triggered=true]": "minecraft:crafter[crafting=true,orientation=down_east,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=down_east,triggered=false]": "minecraft:crafter[crafting=true,orientation=down_east,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=down_north,triggered=true]": "minecraft:crafter[crafting=true,orientation=down_north,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=down_north,triggered=false]": "minecraft:crafter[crafting=true,orientation=down_north,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=down_south,triggered=true]": "minecraft:crafter[crafting=true,orientation=down_south,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=down_south,triggered=false]": "minecraft:crafter[crafting=true,orientation=down_south,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=down_west,triggered=true]": "minecraft:crafter[crafting=true,orientation=down_west,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=down_west,triggered=false]": "minecraft:crafter[crafting=true,orientation=down_west,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=up_east,triggered=true]": "minecraft:crafter[crafting=true,orientation=up_east,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=up_east,triggered=false]": "minecraft:crafter[crafting=true,orientation=up_east,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=up_north,triggered=true]": "minecraft:crafter[crafting=true,orientation=up_north,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=up_north,triggered=false]": "minecraft:crafter[crafting=true,orientation=up_north,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=up_south,triggered=true]": "minecraft:crafter[crafting=true,orientation=up_south,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=up_south,triggered=false]": "minecraft:crafter[crafting=true,orientation=up_south,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=up_west,triggered=true]": "minecraft:crafter[crafting=true,orientation=up_west,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=up_west,triggered=false]": "minecraft:crafter[crafting=true,orientation=up_west,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=west_up,triggered=true]": "minecraft:crafter[crafting=true,orientation=west_up,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=west_up,triggered=false]": "minecraft:crafter[crafting=true,orientation=west_up,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=east_up,triggered=true]": "minecraft:crafter[crafting=true,orientation=east_up,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=east_up,triggered=false]": "minecraft:crafter[crafting=true,orientation=east_up,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=north_up,triggered=true]": "minecraft:crafter[crafting=true,orientation=north_up,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=north_up,triggered=false]": "minecraft:crafter[crafting=true,orientation=north_up,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=south_up,triggered=true]": "minecraft:crafter[crafting=true,orientation=south_up,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=south_up,triggered=false]": "minecraft:crafter[crafting=true,orientation=south_up,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=down_east,triggered=true]": "minecraft:crafter[crafting=false,orientation=down_east,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=down_east,triggered=false]": "minecraft:crafter[crafting=false,orientation=down_east,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=down_north,triggered=true]": "minecraft:crafter[crafting=false,orientation=down_north,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=down_north,triggered=false]": "minecraft:crafter[crafting=false,orientation=down_north,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=down_south,triggered=true]": "minecraft:crafter[crafting=false,orientation=down_south,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=down_south,triggered=false]": "minecraft:crafter[crafting=false,orientation=down_south,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=down_west,triggered=true]": "minecraft:crafter[crafting=false,orientation=down_west,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=down_west,triggered=false]": "minecraft:crafter[crafting=false,orientation=down_west,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=up_east,triggered=true]": "minecraft:crafter[crafting=false,orientation=up_east,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=up_east,triggered=false]": "minecraft:crafter[crafting=false,orientation=up_east,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=up_north,triggered=true]": "minecraft:crafter[crafting=false,orientation=up_north,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=up_north,triggered=false]": "minecraft:crafter[crafting=false,orientation=up_north,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=up_south,triggered=true]": "minecraft:crafter[crafting=false,orientation=up_south,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=up_south,triggered=false]": "minecraft:crafter[crafting=false,orientation=up_south,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=up_west,triggered=true]": "minecraft:crafter[crafting=false,orientation=up_west,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=up_west,triggered=false]": "minecraft:crafter[crafting=false,orientation=up_west,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=west_up,triggered=true]": "minecraft:crafter[crafting=false,orientation=west_up,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=west_up,triggered=false]": "minecraft:crafter[crafting=false,orientation=west_up,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=east_up,triggered=true]": "minecraft:crafter[crafting=false,orientation=east_up,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=east_up,triggered=false]": "minecraft:crafter[crafting=false,orientation=east_up,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=north_up,triggered=true]": "minecraft:crafter[crafting=false,orientation=north_up,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=north_up,triggered=false]": "minecraft:crafter[crafting=false,orientation=north_up,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=south_up,triggered=true]": "minecraft:crafter[crafting=false,orientation=south_up,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=south_up,triggered=false]": "minecraft:crafter[crafting=false,orientation=south_up,triggered_bit=false]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=inactive]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=0]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=waiting_for_players]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=1]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=active]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=2]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=waiting_for_reward_ejection]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=3]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=ejecting_reward]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=4]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=cooldown]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=5]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=inactive]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=0]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=waiting_for_players]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=1]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=active]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=2]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=waiting_for_reward_ejection]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=3]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=ejecting_reward]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=4]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=cooldown]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=5]", + "minecraft:vault[facing=north,ominous=true,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=true,vault_state=inactive]", + "minecraft:vault[facing=north,ominous=true,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=true,vault_state=active]", + "minecraft:vault[facing=north,ominous=true,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=true,vault_state=unlocking]", + "minecraft:vault[facing=north,ominous=true,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=true,vault_state=ejecting]", + "minecraft:vault[facing=north,ominous=false,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=false,vault_state=inactive]", + "minecraft:vault[facing=north,ominous=false,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=false,vault_state=active]", + "minecraft:vault[facing=north,ominous=false,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=false,vault_state=unlocking]", + "minecraft:vault[facing=north,ominous=false,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=false,vault_state=ejecting]", + "minecraft:vault[facing=south,ominous=true,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=true,vault_state=inactive]", + "minecraft:vault[facing=south,ominous=true,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=true,vault_state=active]", + "minecraft:vault[facing=south,ominous=true,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=true,vault_state=unlocking]", + "minecraft:vault[facing=south,ominous=true,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=true,vault_state=ejecting]", + "minecraft:vault[facing=south,ominous=false,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=false,vault_state=inactive]", + "minecraft:vault[facing=south,ominous=false,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=false,vault_state=active]", + "minecraft:vault[facing=south,ominous=false,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=false,vault_state=unlocking]", + "minecraft:vault[facing=south,ominous=false,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=false,vault_state=ejecting]", + "minecraft:vault[facing=west,ominous=true,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=true,vault_state=inactive]", + "minecraft:vault[facing=west,ominous=true,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=true,vault_state=active]", + "minecraft:vault[facing=west,ominous=true,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=true,vault_state=unlocking]", + "minecraft:vault[facing=west,ominous=true,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=true,vault_state=ejecting]", + "minecraft:vault[facing=west,ominous=false,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=false,vault_state=inactive]", + "minecraft:vault[facing=west,ominous=false,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=false,vault_state=active]", + "minecraft:vault[facing=west,ominous=false,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=false,vault_state=unlocking]", + "minecraft:vault[facing=west,ominous=false,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=false,vault_state=ejecting]", + "minecraft:vault[facing=east,ominous=true,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=true,vault_state=inactive]", + "minecraft:vault[facing=east,ominous=true,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=true,vault_state=active]", + "minecraft:vault[facing=east,ominous=true,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=true,vault_state=unlocking]", + "minecraft:vault[facing=east,ominous=true,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=true,vault_state=ejecting]", + "minecraft:vault[facing=east,ominous=false,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=false,vault_state=inactive]", + "minecraft:vault[facing=east,ominous=false,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=false,vault_state=active]", + "minecraft:vault[facing=east,ominous=false,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=false,vault_state=unlocking]", + "minecraft:vault[facing=east,ominous=false,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=false,vault_state=ejecting]", + "minecraft:heavy_core[waterlogged=true]": "minecraft:heavy_core[]", + "minecraft:heavy_core[waterlogged=false]": "minecraft:heavy_core[]", + "minecraft:pale_moss_block[]": "minecraft:pale_moss_block[]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=none,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=none,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=none,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=none,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=none,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=none,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=none,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=none,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=none,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=low,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=low,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=low,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=low,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=low,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=low,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=low,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=low,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=low,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=tall,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=tall,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=tall,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=tall,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=tall,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=tall,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=tall,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=tall,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=none,north=tall,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=none,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=none,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=none,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=none,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=none,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=none,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=none,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=none,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=none,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=low,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=low,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=low,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=low,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=low,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=low,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=low,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=low,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=low,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=tall,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=tall,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=tall,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=tall,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=tall,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=tall,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=tall,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=tall,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=low,north=tall,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=none,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=none,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=none,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=none,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=none,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=none,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=none,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=none,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=none,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=low,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=low,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=low,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=low,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=low,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=low,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=low,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=low,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=low,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=tall,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=tall,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=tall,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=tall,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=tall,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=tall,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=tall,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=tall,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=true,east=tall,north=tall,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=false]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=none,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=none,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=none,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=none,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=none,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=none,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=none,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=none,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=none,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=low,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=low,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=low,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=low,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=low,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=low,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=low,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=low,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=low,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=tall,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=tall,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=tall,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=tall,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=tall,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=tall,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=tall,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=tall,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=none,north=tall,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=none,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=none,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=none,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=none,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=none,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=none,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=none,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=none,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=none,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=none,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=low,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=low,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=low,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=low,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=low,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=low,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=low,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=low,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=low,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=tall,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=tall,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=tall,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=tall,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=tall,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=tall,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=tall,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=tall,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=low,north=tall,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=short,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=none,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=none,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=none,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=none,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=none,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=none,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=none,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=none,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=none,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=none,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=low,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=low,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=low,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=low,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=low,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=low,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=low,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=low,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=low,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=short,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=tall,south=none,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=tall,south=none,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=tall,south=none,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=none,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=tall,south=low,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=tall,south=low,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=tall,south=low,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=short,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=tall,south=tall,west=none]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=none,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=tall,south=tall,west=low]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=short,upper_block_bit=true]", + "minecraft:pale_moss_carpet[bottom=false,east=tall,north=tall,south=tall,west=tall]": "minecraft:pale_moss_carpet[pale_moss_carpet_side_east=tall,pale_moss_carpet_side_north=tall,pale_moss_carpet_side_south=tall,pale_moss_carpet_side_west=tall,upper_block_bit=true]", + "minecraft:pale_hanging_moss[tip=true]": "minecraft:pale_hanging_moss[tip=true]", + "minecraft:pale_hanging_moss[tip=false]": "minecraft:pale_hanging_moss[tip=false]", + "minecraft:open_eyeblossom[]": "minecraft:open_eyeblossom[]", + "minecraft:closed_eyeblossom[]": "minecraft:closed_eyeblossom[]", + "minecraft:potted_open_eyeblossom[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_closed_eyeblossom[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:firefly_bush[]": "minecraft:firefly_bush[]" +} \ No newline at end of file diff --git a/data/blockstates.json b/data/blockstates.json new file mode 100644 index 0000000..6eab7d6 --- /dev/null +++ b/data/blockstates.json @@ -0,0 +1,1525 @@ +{ + "active": { + "values": [ + false, + true + ], + "type": "bool" + }, + "age": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "int" + }, + "age_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "allow_underwater_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "attached_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "attachment": { + "values": [ + "standing", + "hanging", + "side", + "multiple" + ], + "type": "string" + }, + "bamboo_leaf_size": { + "values": [ + "no_leaves", + "small_leaves", + "large_leaves" + ], + "type": "string" + }, + "bamboo_stalk_thickness": { + "values": [ + "thin", + "thick" + ], + "type": "string" + }, + "big_dripleaf_head": { + "values": [ + false, + true + ], + "type": "bool" + }, + "big_dripleaf_tilt": { + "values": [ + "none", + "unstable", + "partial_tilt", + "full_tilt" + ], + "type": "string" + }, + "bite_counter": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "type": "int" + }, + "block_light_level": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "int" + }, + "bloom": { + "values": [ + false, + true + ], + "type": "bool" + }, + "books_stored": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ], + "type": "int" + }, + "brewing_stand_slot_a_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "brewing_stand_slot_b_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "brewing_stand_slot_c_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "brushed_progress": { + "values": [ + 0, + 1, + 2, + 3 + ], + "type": "int" + }, + "button_pressed_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "can_summon": { + "values": [ + false, + true + ], + "type": "bool" + }, + "candles": { + "values": [ + 0, + 1, + 2, + 3 + ], + "type": "int" + }, + "cauldron_liquid": { + "values": [ + "water", + "lava", + "powder_snow" + ], + "type": "string" + }, + "chemistry_table_type": { + "values": [ + "compound_creator", + "material_reducer", + "element_constructor", + "lab_table" + ], + "type": "string" + }, + "chisel_type": { + "values": [ + "default", + "chiseled", + "lines", + "smooth" + ], + "type": "string" + }, + "cluster_count": { + "values": [ + 0, + 1, + 2, + 3 + ], + "type": "int" + }, + "color": { + "values": [ + "white", + "orange", + "magenta", + "light_blue", + "yellow", + "lime", + "pink", + "gray", + "silver", + "cyan", + "purple", + "blue", + "brown", + "green", + "red", + "black" + ], + "type": "string" + }, + "color_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "composter_fill_level": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "int" + }, + "conditional_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "coral_color": { + "values": [ + "blue", + "pink", + "purple", + "red", + "yellow" + ], + "type": "string" + }, + "coral_direction": { + "values": [ + 0, + 1, + 2, + 3 + ], + "type": "int" + }, + "coral_fan_direction": { + "values": [ + 0, + 1 + ], + "type": "int" + }, + "coral_hang_type_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "covered_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "cracked_state": { + "values": [ + "no_cracks", + "cracked", + "max_cracked" + ], + "type": "string" + }, + "crafting": { + "values": [ + false, + true + ], + "type": "bool" + }, + "damage": { + "values": [ + "undamaged", + "slightly_damaged", + "very_damaged", + "broken" + ], + "type": "string" + }, + "dead_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "deprecated": { + "values": [ + 0, + 1, + 2, + 3 + ], + "type": "int" + }, + "direction": { + "values": [ + 0, + 1, + 2, + 3 + ], + "type": "int" + }, + "dirt_type": { + "values": [ + "normal", + "coarse" + ], + "type": "string" + }, + "disarmed_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "door_hinge_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "double_plant_type": { + "values": [ + "sunflower", + "syringa", + "grass", + "fern", + "rose", + "paeonia" + ], + "type": "string" + }, + "drag_down": { + "values": [ + false, + true + ], + "type": "bool" + }, + "dripstone_thickness": { + "values": [ + "tip", + "frustum", + "middle", + "base", + "merge" + ], + "type": "string" + }, + "end_portal_eye_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "explode_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "extinguished": { + "values": [ + false, + true + ], + "type": "bool" + }, + "facing_direction": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "type": "int" + }, + "fill_level": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "type": "int" + }, + "flower_type": { + "values": [ + "poppy", + "orchid", + "allium", + "houstonia", + "tulip_red", + "tulip_orange", + "tulip_white", + "tulip_pink", + "oxeye", + "cornflower", + "lily_of_the_valley" + ], + "type": "string" + }, + "ground_sign_direction": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "int" + }, + "growing_plant_age": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "type": "int" + }, + "growth": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "int" + }, + "hanging": { + "values": [ + false, + true + ], + "type": "bool" + }, + "head_piece_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "height": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "int" + }, + "honey_level": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "type": "int" + }, + "huge_mushroom_bits": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "int" + }, + "in_wall_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "infiniburn_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "item_frame_map_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "item_frame_photo_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "kelp_age": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "type": "int" + }, + "lever_direction": { + "values": [ + "down_east_west", + "east", + "west", + "south", + "north", + "up_north_south", + "up_east_west", + "down_north_south" + ], + "type": "string" + }, + "liquid_depth": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "int" + }, + "lit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "minecraft:block_face": { + "values": [ + "down", + "up", + "north", + "south", + "west", + "east" + ], + "type": "string" + }, + "minecraft:cardinal_direction": { + "values": [ + "south", + "west", + "north", + "east" + ], + "type": "string" + }, + "minecraft:facing_direction": { + "values": [ + "down", + "up", + "north", + "south", + "west", + "east" + ], + "type": "string" + }, + "minecraft:vertical_half": { + "values": [ + "bottom", + "top" + ], + "type": "string" + }, + "moisturized_amount": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "int" + }, + "monster_egg_stone_type": { + "values": [ + "stone", + "cobblestone", + "stone_brick", + "mossy_stone_brick", + "cracked_stone_brick", + "chiseled_stone_brick" + ], + "type": "string" + }, + "multi_face_direction_bits": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ], + "type": "int" + }, + "new_leaf_type": { + "values": [ + "acacia", + "dark_oak" + ], + "type": "string" + }, + "new_log_type": { + "values": [ + "acacia", + "dark_oak" + ], + "type": "string" + }, + "no_drop_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "occupied_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "old_leaf_type": { + "values": [ + "oak", + "spruce", + "birch", + "jungle" + ], + "type": "string" + }, + "old_log_type": { + "values": [ + "oak", + "spruce", + "birch", + "jungle" + ], + "type": "string" + }, + "ominous": { + "values": [ + false, + true + ], + "type": "bool" + }, + "open_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "orientation": { + "values": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ], + "type": "string" + }, + "output_lit_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "output_subtract_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "persistent_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "pillar_axis": { + "values": [ + "y", + "x", + "z" + ], + "type": "string" + }, + "portal_axis": { + "values": [ + "unknown", + "x", + "z" + ], + "type": "string" + }, + "powered_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "prismarine_block_type": { + "values": [ + "default", + "dark", + "bricks" + ], + "type": "string" + }, + "propagule_stage": { + "values": [ + 0, + 1, + 2, + 3, + 4 + ], + "type": "int" + }, + "rail_data_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "rail_direction": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "type": "int" + }, + "redstone_signal": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "int" + }, + "repeater_delay": { + "values": [ + 0, + 1, + 2, + 3 + ], + "type": "int" + }, + "respawn_anchor_charge": { + "values": [ + 0, + 1, + 2, + 3, + 4 + ], + "type": "int" + }, + "rotation": { + "values": [ + 0, + 1, + 2, + 3 + ], + "type": "int" + }, + "sand_stone_type": { + "values": [ + "default", + "heiroglyphs", + "cut", + "smooth" + ], + "type": "string" + }, + "sand_type": { + "values": [ + "normal", + "red" + ], + "type": "string" + }, + "sapling_type": { + "values": [ + "oak", + "spruce", + "birch", + "jungle", + "acacia", + "dark_oak" + ], + "type": "string" + }, + "sculk_sensor_phase": { + "values": [ + 0, + 1, + 2 + ], + "type": "int" + }, + "sea_grass_type": { + "values": [ + "default", + "double_top", + "double_bot" + ], + "type": "string" + }, + "sponge_type": { + "values": [ + "dry", + "wet" + ], + "type": "string" + }, + "stability": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "type": "int" + }, + "stability_check": { + "values": [ + false, + true + ], + "type": "bool" + }, + "stone_brick_type": { + "values": [ + "default", + "mossy", + "cracked", + "chiseled", + "smooth" + ], + "type": "string" + }, + "stone_slab_type": { + "values": [ + "smooth_stone", + "sandstone", + "wood", + "cobblestone", + "brick", + "stone_brick", + "quartz", + "nether_brick" + ], + "type": "string" + }, + "stone_slab_type_2": { + "values": [ + "red_sandstone", + "purpur", + "prismarine_rough", + "prismarine_dark", + "prismarine_brick", + "mossy_cobblestone", + "smooth_sandstone", + "red_nether_brick" + ], + "type": "string" + }, + "stone_slab_type_3": { + "values": [ + "end_stone_brick", + "smooth_red_sandstone", + "polished_andesite", + "andesite", + "diorite", + "polished_diorite", + "granite", + "polished_granite" + ], + "type": "string" + }, + "stone_slab_type_4": { + "values": [ + "mossy_stone_brick", + "smooth_quartz", + "stone", + "cut_sandstone", + "cut_red_sandstone" + ], + "type": "string" + }, + "stone_type": { + "values": [ + "stone", + "granite", + "granite_smooth", + "diorite", + "diorite_smooth", + "andesite", + "andesite_smooth" + ], + "type": "string" + }, + "stripped_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "structure_block_type": { + "values": [ + "data", + "save", + "load", + "corner", + "invalid", + "export" + ], + "type": "string" + }, + "structure_void_type": { + "values": [ + "void", + "air" + ], + "type": "string" + }, + "suspended_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "tall_grass_type": { + "values": [ + "default", + "tall", + "fern", + "snow" + ], + "type": "string" + }, + "toggle_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "top_slot_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "torch_facing_direction": { + "values": [ + "unknown", + "west", + "east", + "north", + "south", + "top" + ], + "type": "string" + }, + "trial_spawner_state": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "type": "int" + }, + "triggered_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "turtle_egg_count": { + "values": [ + "one_egg", + "two_egg", + "three_egg", + "four_egg" + ], + "type": "string" + }, + "twisting_vines_age": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "type": "int" + }, + "update_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "upper_block_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "upside_down_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "vault_state": { + "values": [ + "inactive", + "active", + "unlocking", + "ejecting" + ], + "type": "string" + }, + "vine_direction_bits": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "int" + }, + "wall_block_type": { + "values": [ + "cobblestone", + "mossy_cobblestone", + "granite", + "diorite", + "andesite", + "sandstone", + "brick", + "stone_brick", + "mossy_stone_brick", + "nether_brick", + "end_brick", + "prismarine", + "red_sandstone", + "red_nether_brick" + ], + "type": "string" + }, + "wall_connection_type_east": { + "values": [ + "none", + "short", + "tall" + ], + "type": "string" + }, + "wall_connection_type_north": { + "values": [ + "none", + "short", + "tall" + ], + "type": "string" + }, + "wall_connection_type_south": { + "values": [ + "none", + "short", + "tall" + ], + "type": "string" + }, + "wall_connection_type_west": { + "values": [ + "none", + "short", + "tall" + ], + "type": "string" + }, + "wall_post_bit": { + "values": [ + false, + true + ], + "type": "bool" + }, + "weeping_vines_age": { + "values": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "type": "int" + }, + "weirdo_direction": { + "values": [ + 0, + 1, + 2, + 3 + ], + "type": "int" + }, + "wood_type": { + "values": [ + "oak", + "spruce", + "birch", + "jungle", + "acacia", + "dark_oak" + ], + "type": "string" + } +} \ No newline at end of file diff --git a/data/skullJ2B.json b/data/skullJ2B.json new file mode 100644 index 0000000..39d959e --- /dev/null +++ b/data/skullJ2B.json @@ -0,0 +1,14 @@ +{ + "minecraft:skeleton_skull": 0, + "minecraft:skeleton_wall_skull": 0, + "minecraft:wither_skeleton_skull": 1, + "minecraft:wither_skeleton_wall_skull": 1, + "minecraft:zombie_head": 2, + "minecraft:zombie_wall_head": 2, + "minecraft:player_head": 3, + "minecraft:player_wall_head": 3, + "minecraft:creeper_head": 4, + "minecraft:creeper_wall_head": 4, + "minecraft:dragon_head": 5, + "minecraft:dragon_wall_head": 5 +} \ No newline at end of file diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..0059f1b Binary files /dev/null and b/favicon.ico differ diff --git a/image.png b/image.png new file mode 100644 index 0000000..0059f1b Binary files /dev/null and b/image.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..2e72067 --- /dev/null +++ b/index.html @@ -0,0 +1,458 @@ + + + + + + Projection Addon Generator + + + + + + + + + + + + +
+ +
+

Construct Pack Generator

+

100% Offline · No Upload · Instant Convert

+
+ + +
+

+ Upload Files + Supported: .mcstructure | .nbt | .litematic +

+
+ Drag files here or click to select + + +
+
+
+ + +
Open in browser for best experience
+ + +
+

Configuration

+
+ + +
+ +
+ + + + + + + + + +
+ + + + + + diff --git a/js/convert/litematicToNbt/litematic-to-nbt.umd.js b/js/convert/litematicToNbt/litematic-to-nbt.umd.js new file mode 100644 index 0000000..ee5dc0b --- /dev/null +++ b/js/convert/litematicToNbt/litematic-to-nbt.umd.js @@ -0,0 +1 @@ +(function(){const n=document.createElement("link").relList;if(n&&n.supports&&n.supports("modulepreload"))return;for(const a of document.querySelectorAll('link[rel="modulepreload"]'))i(a);new MutationObserver(a=>{for(const r of a)if(r.type==="childList")for(const s of r.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&i(s)}).observe(document,{childList:!0,subtree:!0});function e(a){const r={};return a.integrity&&(r.integrity=a.integrity),a.referrerPolicy&&(r.referrerPolicy=a.referrerPolicy),a.crossOrigin==="use-credentials"?r.credentials="include":a.crossOrigin==="anonymous"?r.credentials="omit":r.credentials="same-origin",r}function i(a){if(a.ep)return;a.ep=!0;const r=e(a);fetch(a.href,r)}})();const Yt=0,Se=1,ze=2,_t=3,Ie=4,Re=5,Qt=6,Ce=7,De=8,Ne=9,M=10,Le=11,Oe=12;class Ze{value;constructor(n){this.value=n}getType(){return Se}writeContents(n,e){n.setInt8(e.value,this.value),e.value+=1}static readContents(n,e){const i=n.getInt8(e.value);return e.value+=1,new Ze(i)}}class Ue{value;constructor(n){this.value=n}getType(){return ze}writeContents(n,e){n.setInt16(e.value,this.value,!1),e.value+=2}static readContents(n,e){const i=n.getInt16(e.value,!1);return e.value+=2,new Ue(i)}}class U{value;constructor(n){this.value=n}getType(){return _t}writeContents(n,e){n.setInt32(e.value,this.value,!1),e.value+=4}static readContents(n,e){const i=n.getInt32(e.value,!1);return e.value+=4,new U(i)}}class Be{value;constructor(n){this.value=n}getType(){return Ie}writeContents(n,e){n.setBigInt64(e.value,this.value,!1),e.value+=8}static readContents(n,e){const i=n.getBigInt64(e.value,!1);return e.value+=8,new Be(i)}}class $e{value;constructor(n){this.value=n}getType(){return Re}writeContents(n,e){n.setFloat32(e.value,this.value,!1),e.value+=4}static readContents(n,e){const i=n.getFloat32(e.value,!1);return e.value+=4,new $e(i)}}class ut{value;constructor(n){this.value=n}getType(){return Qt}writeContents(n,e){n.setFloat64(e.value,this.value,!1),e.value+=8}static readContents(n,e){const i=n.getFloat64(e.value,!1);return e.value+=8,new ut(i)}}class Fe{values;constructor(n){this.values=n}getType(){return Ce}writeContents(n,e){n.setInt32(e.value,this.values.length,!1),e.value+=4;for(let i=0;iArray(a).fill(null).map(()=>Array(r).fill(null))),this.palette=new Set,this.blockEntities=new Map,this.entities=[],this.sourceFileName=n,this.dataVersion=e}setBlockAt(n,e,i,a){n>=0&&n=0&&e=0&&i=0;)t[n]=0}const zi=0,Mn=1,Ii=2,Ri=3,Ci=258,Ge=29,Lt=256,Tt=Lt+1+Ge,dt=30,Ke=19,Hn=2*Tt+1,nt=15,ie=16,Di=7,Ve=256,Pn=16,Gn=17,Kn=18,be=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),Vt=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),Ni=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),Vn=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Li=512,X=new Array((Tt+2)*2);bt(X);const mt=new Array(dt*2);bt(mt);const St=new Array(Li);bt(St);const zt=new Array(Ci-Ri+1);bt(zt);const Ye=new Array(Ge);bt(Ye);const Xt=new Array(dt);bt(Xt);function ae(t,n,e,i,a){this.static_tree=t,this.extra_bits=n,this.extra_base=e,this.elems=i,this.max_length=a,this.has_stree=t&&t.length}let Yn,Xn,jn;function re(t,n){this.dyn_tree=t,this.max_code=0,this.stat_desc=n}const Wn=t=>t<256?St[t]:St[256+(t>>>7)],It=(t,n)=>{t.pending_buf[t.pending++]=n&255,t.pending_buf[t.pending++]=n>>>8&255},L=(t,n,e)=>{t.bi_valid>ie-e?(t.bi_buf|=n<>ie-t.bi_valid,t.bi_valid+=e-ie):(t.bi_buf|=n<{L(t,e[n*2],e[n*2+1])},qn=(t,n)=>{let e=0;do e|=t&1,t>>>=1,e<<=1;while(--n>0);return e>>>1},Oi=t=>{t.bi_valid===16?(It(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=t.bi_buf&255,t.bi_buf>>=8,t.bi_valid-=8)},Zi=(t,n)=>{const e=n.dyn_tree,i=n.max_code,a=n.stat_desc.static_tree,r=n.stat_desc.has_stree,s=n.stat_desc.extra_bits,o=n.stat_desc.extra_base,h=n.stat_desc.max_length;let l,c,p,u,f,g,I=0;for(u=0;u<=nt;u++)t.bl_count[u]=0;for(e[t.heap[t.heap_max]*2+1]=0,l=t.heap_max+1;lh&&(u=h,I++),e[c*2+1]=u,!(c>i)&&(t.bl_count[u]++,f=0,c>=o&&(f=s[c-o]),g=e[c*2],t.opt_len+=g*(u+f),r&&(t.static_len+=g*(a[c*2+1]+f)));if(I!==0){do{for(u=h-1;t.bl_count[u]===0;)u--;t.bl_count[u]--,t.bl_count[u+1]+=2,t.bl_count[h]--,I-=2}while(I>0);for(u=h;u!==0;u--)for(c=t.bl_count[u];c!==0;)p=t.heap[--l],!(p>i)&&(e[p*2+1]!==u&&(t.opt_len+=(u-e[p*2+1])*e[p*2],e[p*2+1]=u),c--)}},Jn=(t,n,e)=>{const i=new Array(nt+1);let a=0,r,s;for(r=1;r<=nt;r++)a=a+e[r-1]<<1,i[r]=a;for(s=0;s<=n;s++){let o=t[s*2+1];o!==0&&(t[s*2]=qn(i[o]++,o))}},Ui=()=>{let t,n,e,i,a;const r=new Array(nt+1);for(e=0,i=0;i>=7;i{let n;for(n=0;n{t.bi_valid>8?It(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0},en=(t,n,e,i)=>{const a=n*2,r=e*2;return t[a]{const i=t.heap[e];let a=e<<1;for(;a<=t.heap_len&&(a{let i,a,r=0,s,o;if(t.sym_next!==0)do i=t.pending_buf[t.sym_buf+r++]&255,i+=(t.pending_buf[t.sym_buf+r++]&255)<<8,a=t.pending_buf[t.sym_buf+r++],i===0?G(t,a,n):(s=zt[a],G(t,s+Lt+1,n),o=be[s],o!==0&&(a-=Ye[s],L(t,a,o)),i--,s=Wn(i),G(t,s,e),o=Vt[s],o!==0&&(i-=Xt[s],L(t,i,o)));while(r{const e=n.dyn_tree,i=n.stat_desc.static_tree,a=n.stat_desc.has_stree,r=n.stat_desc.elems;let s,o,h=-1,l;for(t.heap_len=0,t.heap_max=Hn,s=0;s>1;s>=1;s--)le(t,e,s);l=r;do s=t.heap[1],t.heap[1]=t.heap[t.heap_len--],le(t,e,1),o=t.heap[1],t.heap[--t.heap_max]=s,t.heap[--t.heap_max]=o,e[l*2]=e[s*2]+e[o*2],t.depth[l]=(t.depth[s]>=t.depth[o]?t.depth[s]:t.depth[o])+1,e[s*2+1]=e[o*2+1]=l,t.heap[1]=l++,le(t,e,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],Zi(t,n),Jn(e,h,t.bl_count)},an=(t,n,e)=>{let i,a=-1,r,s=n[1],o=0,h=7,l=4;for(s===0&&(h=138,l=3),n[(e+1)*2+1]=65535,i=0;i<=e;i++)r=s,s=n[(i+1)*2+1],!(++o{let i,a=-1,r,s=n[1],o=0,h=7,l=4;for(s===0&&(h=138,l=3),i=0;i<=e;i++)if(r=s,s=n[(i+1)*2+1],!(++o{let n;for(an(t,t.dyn_ltree,t.l_desc.max_code),an(t,t.dyn_dtree,t.d_desc.max_code),pe(t,t.bl_desc),n=Ke-1;n>=3&&t.bl_tree[Vn[n]*2+1]===0;n--);return t.opt_len+=3*(n+1)+5+5+4,n},$i=(t,n,e,i)=>{let a;for(L(t,n-257,5),L(t,e-1,5),L(t,i-4,4),a=0;a{let n=4093624447,e;for(e=0;e<=31;e++,n>>>=1)if(n&1&&t.dyn_ltree[e*2]!==0)return Qe;if(t.dyn_ltree[18]!==0||t.dyn_ltree[20]!==0||t.dyn_ltree[26]!==0)return tn;for(e=32;e{ln||(Ui(),ln=!0),t.l_desc=new re(t.dyn_ltree,Yn),t.d_desc=new re(t.dyn_dtree,Xn),t.bl_desc=new re(t.bl_tree,jn),t.bi_buf=0,t.bi_valid=0,Qn(t)},ei=(t,n,e,i)=>{L(t,(zi<<1)+(i?1:0),3),ti(t),It(t,e),It(t,~e),e&&t.pending_buf.set(t.window.subarray(n,n+e),t.pending),t.pending+=e},Hi=t=>{L(t,Mn<<1,3),G(t,Ve,X),Oi(t)},Pi=(t,n,e,i)=>{let a,r,s=0;t.level>0?(t.strm.data_type===Si&&(t.strm.data_type=Fi(t)),pe(t,t.l_desc),pe(t,t.d_desc),s=Bi(t),a=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=a&&(a=r)):a=r=e+5,e+4<=a&&n!==-1?ei(t,n,e,i):t.strategy===Ti||r===a?(L(t,(Mn<<1)+(i?1:0),3),nn(t,X,mt)):(L(t,(Ii<<1)+(i?1:0),3),$i(t,t.l_desc.max_code+1,t.d_desc.max_code+1,s+1),nn(t,t.dyn_ltree,t.dyn_dtree)),Qn(t),i&&ti(t)},Gi=(t,n,e)=>(t.pending_buf[t.sym_buf+t.sym_next++]=n,t.pending_buf[t.sym_buf+t.sym_next++]=n>>8,t.pending_buf[t.sym_buf+t.sym_next++]=e,n===0?t.dyn_ltree[e*2]++:(t.matches++,n--,t.dyn_ltree[(zt[e]+Lt+1)*2]++,t.dyn_dtree[Wn(n)*2]++),t.sym_next===t.sym_end);var Ki=Mi,Vi=ei,Yi=Pi,Xi=Gi,ji=Hi,Wi={_tr_init:Ki,_tr_stored_block:Vi,_tr_flush_block:Yi,_tr_tally:Xi,_tr_align:ji};const qi=(t,n,e,i)=>{let a=t&65535|0,r=t>>>16&65535|0,s=0;for(;e!==0;){s=e>2e3?2e3:e,e-=s;do a=a+n[i++]|0,r=r+a|0;while(--s);a%=65521,r%=65521}return a|r<<16|0};var Rt=qi;const Ji=()=>{let t,n=[];for(var e=0;e<256;e++){t=e;for(var i=0;i<8;i++)t=t&1?3988292384^t>>>1:t>>>1;n[e]=t}return n},Qi=new Uint32Array(Ji()),ta=(t,n,e,i)=>{const a=Qi,r=i+e;t^=-1;for(let s=i;s>>8^a[(t^n[s])&255];return t^-1};var C=ta,lt={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},Ot={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:ea,_tr_stored_block:ve,_tr_flush_block:na,_tr_tally:J,_tr_align:ia}=Wi,{Z_NO_FLUSH:Q,Z_PARTIAL_FLUSH:aa,Z_FULL_FLUSH:ra,Z_FINISH:B,Z_BLOCK:on,Z_OK:D,Z_STREAM_END:sn,Z_STREAM_ERROR:K,Z_DATA_ERROR:la,Z_BUF_ERROR:oe,Z_DEFAULT_COMPRESSION:oa,Z_FILTERED:sa,Z_HUFFMAN_ONLY:Mt,Z_RLE:ca,Z_FIXED:fa,Z_DEFAULT_STRATEGY:ha,Z_UNKNOWN:_a,Z_DEFLATED:te}=Ot,ua=9,da=15,ga=8,wa=29,ba=256,xe=ba+1+wa,pa=30,va=19,xa=2*xe+1,ka=15,E=3,q=258,V=q+E+1,ya=32,gt=42,Xe=57,ke=69,ye=73,me=91,Ee=103,it=113,kt=666,N=1,pt=2,ot=3,vt=4,ma=3,at=(t,n)=>(t.msg=lt[n],n),cn=t=>t*2-(t>4?9:0),W=t=>{let n=t.length;for(;--n>=0;)t[n]=0},Ea=t=>{let n,e,i,a=t.w_size;n=t.hash_size,i=n;do e=t.head[--i],t.head[i]=e>=a?e-a:0;while(--n);n=a,i=n;do e=t.prev[--i],t.prev[i]=e>=a?e-a:0;while(--n)};let Aa=(t,n,e)=>(n<{const n=t.state;let e=n.pending;e>t.avail_out&&(e=t.avail_out),e!==0&&(t.output.set(n.pending_buf.subarray(n.pending_out,n.pending_out+e),t.next_out),t.next_out+=e,n.pending_out+=e,t.total_out+=e,t.avail_out-=e,n.pending-=e,n.pending===0&&(n.pending_out=0))},Z=(t,n)=>{na(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,n),t.block_start=t.strstart,O(t.strm)},z=(t,n)=>{t.pending_buf[t.pending++]=n},xt=(t,n)=>{t.pending_buf[t.pending++]=n>>>8&255,t.pending_buf[t.pending++]=n&255},Ae=(t,n,e,i)=>{let a=t.avail_in;return a>i&&(a=i),a===0?0:(t.avail_in-=a,n.set(t.input.subarray(t.next_in,t.next_in+a),e),t.state.wrap===1?t.adler=Rt(t.adler,n,a,e):t.state.wrap===2&&(t.adler=C(t.adler,n,a,e)),t.next_in+=a,t.total_in+=a,a)},ni=(t,n)=>{let e=t.max_chain_length,i=t.strstart,a,r,s=t.prev_length,o=t.nice_match;const h=t.strstart>t.w_size-V?t.strstart-(t.w_size-V):0,l=t.window,c=t.w_mask,p=t.prev,u=t.strstart+q;let f=l[i+s-1],g=l[i+s];t.prev_length>=t.good_match&&(e>>=2),o>t.lookahead&&(o=t.lookahead);do if(a=n,!(l[a+s]!==g||l[a+s-1]!==f||l[a]!==l[i]||l[++a]!==l[i+1])){i+=2,a++;do;while(l[++i]===l[++a]&&l[++i]===l[++a]&&l[++i]===l[++a]&&l[++i]===l[++a]&&l[++i]===l[++a]&&l[++i]===l[++a]&&l[++i]===l[++a]&&l[++i]===l[++a]&&is){if(t.match_start=n,s=r,r>=o)break;f=l[i+s-1],g=l[i+s]}}while((n=p[n&c])>h&&--e!==0);return s<=t.lookahead?s:t.lookahead},wt=t=>{const n=t.w_size;let e,i,a;do{if(i=t.window_size-t.lookahead-t.strstart,t.strstart>=n+(n-V)&&(t.window.set(t.window.subarray(n,n+n-i),0),t.match_start-=n,t.strstart-=n,t.block_start-=n,t.insert>t.strstart&&(t.insert=t.strstart),Ea(t),i+=n),t.strm.avail_in===0)break;if(e=Ae(t.strm,t.window,t.strstart+t.lookahead,i),t.lookahead+=e,t.lookahead+t.insert>=E)for(a=t.strstart-t.insert,t.ins_h=t.window[a],t.ins_h=tt(t,t.ins_h,t.window[a+1]);t.insert&&(t.ins_h=tt(t,t.ins_h,t.window[a+E-1]),t.prev[a&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=a,a++,t.insert--,!(t.lookahead+t.insert{let e=t.pending_buf_size-5>t.w_size?t.w_size:t.pending_buf_size-5,i,a,r,s=0,o=t.strm.avail_in;do{if(i=65535,r=t.bi_valid+42>>3,t.strm.avail_outa+t.strm.avail_in&&(i=a+t.strm.avail_in),i>r&&(i=r),i>8,t.pending_buf[t.pending-2]=~i,t.pending_buf[t.pending-1]=~i>>8,O(t.strm),a&&(a>i&&(a=i),t.strm.output.set(t.window.subarray(t.block_start,t.block_start+a),t.strm.next_out),t.strm.next_out+=a,t.strm.avail_out-=a,t.strm.total_out+=a,t.block_start+=a,i-=a),i&&(Ae(t.strm,t.strm.output,t.strm.next_out,i),t.strm.next_out+=i,t.strm.avail_out-=i,t.strm.total_out+=i)}while(s===0);return o-=t.strm.avail_in,o&&(o>=t.w_size?(t.matches=2,t.window.set(t.strm.input.subarray(t.strm.next_in-t.w_size,t.strm.next_in),0),t.strstart=t.w_size,t.insert=t.strstart):(t.window_size-t.strstart<=o&&(t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,t.insert>t.strstart&&(t.insert=t.strstart)),t.window.set(t.strm.input.subarray(t.strm.next_in-o,t.strm.next_in),t.strstart),t.strstart+=o,t.insert+=o>t.w_size-t.insert?t.w_size-t.insert:o),t.block_start=t.strstart),t.high_waterr&&t.block_start>=t.w_size&&(t.block_start-=t.w_size,t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,r+=t.w_size,t.insert>t.strstart&&(t.insert=t.strstart)),r>t.strm.avail_in&&(r=t.strm.avail_in),r&&(Ae(t.strm,t.window,t.strstart,r),t.strstart+=r,t.insert+=r>t.w_size-t.insert?t.w_size-t.insert:r),t.high_water>3,r=t.pending_buf_size-r>65535?65535:t.pending_buf_size-r,e=r>t.w_size?t.w_size:r,a=t.strstart-t.block_start,(a>=e||(a||n===B)&&n!==Q&&t.strm.avail_in===0&&a<=r)&&(i=a>r?r:a,s=n===B&&t.strm.avail_in===0&&i===a?1:0,ve(t,t.block_start,i,s),t.block_start+=i,O(t.strm)),s?ot:N)},se=(t,n)=>{let e,i;for(;;){if(t.lookahead=E&&(t.ins_h=tt(t,t.ins_h,t.window[t.strstart+E-1]),e=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),e!==0&&t.strstart-e<=t.w_size-V&&(t.match_length=ni(t,e)),t.match_length>=E)if(i=J(t,t.strstart-t.match_start,t.match_length-E),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=E){t.match_length--;do t.strstart++,t.ins_h=tt(t,t.ins_h,t.window[t.strstart+E-1]),e=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart;while(--t.match_length!==0);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=tt(t,t.ins_h,t.window[t.strstart+1]);else i=J(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(i&&(Z(t,!1),t.strm.avail_out===0))return N}return t.insert=t.strstart{let e,i,a;for(;;){if(t.lookahead=E&&(t.ins_h=tt(t,t.ins_h,t.window[t.strstart+E-1]),e=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=E-1,e!==0&&t.prev_length4096)&&(t.match_length=E-1)),t.prev_length>=E&&t.match_length<=t.prev_length){a=t.strstart+t.lookahead-E,i=J(t,t.strstart-1-t.prev_match,t.prev_length-E),t.lookahead-=t.prev_length-1,t.prev_length-=2;do++t.strstart<=a&&(t.ins_h=tt(t,t.ins_h,t.window[t.strstart+E-1]),e=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart);while(--t.prev_length!==0);if(t.match_available=0,t.match_length=E-1,t.strstart++,i&&(Z(t,!1),t.strm.avail_out===0))return N}else if(t.match_available){if(i=J(t,0,t.window[t.strstart-1]),i&&Z(t,!1),t.strstart++,t.lookahead--,t.strm.avail_out===0)return N}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(i=J(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart{let e,i,a,r;const s=t.window;for(;;){if(t.lookahead<=q){if(wt(t),t.lookahead<=q&&n===Q)return N;if(t.lookahead===0)break}if(t.match_length=0,t.lookahead>=E&&t.strstart>0&&(a=t.strstart-1,i=s[a],i===s[++a]&&i===s[++a]&&i===s[++a])){r=t.strstart+q;do;while(i===s[++a]&&i===s[++a]&&i===s[++a]&&i===s[++a]&&i===s[++a]&&i===s[++a]&&i===s[++a]&&i===s[++a]&&at.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=E?(e=J(t,1,t.match_length-E),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(e=J(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),e&&(Z(t,!1),t.strm.avail_out===0))return N}return t.insert=0,n===B?(Z(t,!0),t.strm.avail_out===0?ot:vt):t.sym_next&&(Z(t,!1),t.strm.avail_out===0)?N:pt},Sa=(t,n)=>{let e;for(;;){if(t.lookahead===0&&(wt(t),t.lookahead===0)){if(n===Q)return N;break}if(t.match_length=0,e=J(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,e&&(Z(t,!1),t.strm.avail_out===0))return N}return t.insert=0,n===B?(Z(t,!0),t.strm.avail_out===0?ot:vt):t.sym_next&&(Z(t,!1),t.strm.avail_out===0)?N:pt};function H(t,n,e,i,a){this.good_length=t,this.max_lazy=n,this.nice_length=e,this.max_chain=i,this.func=a}const yt=[new H(0,0,0,0,ii),new H(4,4,8,4,se),new H(4,5,16,8,se),new H(4,6,32,32,se),new H(4,4,16,16,ft),new H(8,16,32,32,ft),new H(8,16,128,128,ft),new H(8,32,128,256,ft),new H(32,128,258,1024,ft),new H(32,258,258,4096,ft)],za=t=>{t.window_size=2*t.w_size,W(t.head),t.max_lazy_match=yt[t.level].max_lazy,t.good_match=yt[t.level].good_length,t.nice_match=yt[t.level].nice_length,t.max_chain_length=yt[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=E-1,t.match_available=0,t.ins_h=0};function Ia(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=te,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(xa*2),this.dyn_dtree=new Uint16Array((2*pa+1)*2),this.bl_tree=new Uint16Array((2*va+1)*2),W(this.dyn_ltree),W(this.dyn_dtree),W(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(ka+1),this.heap=new Uint16Array(2*xe+1),W(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(2*xe+1),W(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const Zt=t=>{if(!t)return 1;const n=t.state;return!n||n.strm!==t||n.status!==gt&&n.status!==Xe&&n.status!==ke&&n.status!==ye&&n.status!==me&&n.status!==Ee&&n.status!==it&&n.status!==kt?1:0},ai=t=>{if(Zt(t))return at(t,K);t.total_in=t.total_out=0,t.data_type=_a;const n=t.state;return n.pending=0,n.pending_out=0,n.wrap<0&&(n.wrap=-n.wrap),n.status=n.wrap===2?Xe:n.wrap?gt:it,t.adler=n.wrap===2?0:1,n.last_flush=-2,ea(n),D},ri=t=>{const n=ai(t);return n===D&&za(t.state),n},Ra=(t,n)=>Zt(t)||t.state.wrap!==2?K:(t.state.gzhead=n,D),li=(t,n,e,i,a,r)=>{if(!t)return K;let s=1;if(n===oa&&(n=6),i<0?(s=0,i=-i):i>15&&(s=2,i-=16),a<1||a>ua||e!==te||i<8||i>15||n<0||n>9||r<0||r>fa||i===8&&s!==1)return at(t,K);i===8&&(i=9);const o=new Ia;return t.state=o,o.strm=t,o.status=gt,o.wrap=s,o.gzhead=null,o.w_bits=i,o.w_size=1<li(t,n,te,da,ga,ha),Da=(t,n)=>{if(Zt(t)||n>on||n<0)return t?at(t,K):K;const e=t.state;if(!t.output||t.avail_in!==0&&!t.input||e.status===kt&&n!==B)return at(t,t.avail_out===0?oe:K);const i=e.last_flush;if(e.last_flush=n,e.pending!==0){if(O(t),t.avail_out===0)return e.last_flush=-1,D}else if(t.avail_in===0&&cn(n)<=cn(i)&&n!==B)return at(t,oe);if(e.status===kt&&t.avail_in!==0)return at(t,oe);if(e.status===gt&&e.wrap===0&&(e.status=it),e.status===gt){let a=te+(e.w_bits-8<<4)<<8,r=-1;if(e.strategy>=Mt||e.level<2?r=0:e.level<6?r=1:e.level===6?r=2:r=3,a|=r<<6,e.strstart!==0&&(a|=ya),a+=31-a%31,xt(e,a),e.strstart!==0&&(xt(e,t.adler>>>16),xt(e,t.adler&65535)),t.adler=1,e.status=it,O(t),e.pending!==0)return e.last_flush=-1,D}if(e.status===Xe){if(t.adler=0,z(e,31),z(e,139),z(e,8),e.gzhead)z(e,(e.gzhead.text?1:0)+(e.gzhead.hcrc?2:0)+(e.gzhead.extra?4:0)+(e.gzhead.name?8:0)+(e.gzhead.comment?16:0)),z(e,e.gzhead.time&255),z(e,e.gzhead.time>>8&255),z(e,e.gzhead.time>>16&255),z(e,e.gzhead.time>>24&255),z(e,e.level===9?2:e.strategy>=Mt||e.level<2?4:0),z(e,e.gzhead.os&255),e.gzhead.extra&&e.gzhead.extra.length&&(z(e,e.gzhead.extra.length&255),z(e,e.gzhead.extra.length>>8&255)),e.gzhead.hcrc&&(t.adler=C(t.adler,e.pending_buf,e.pending,0)),e.gzindex=0,e.status=ke;else if(z(e,0),z(e,0),z(e,0),z(e,0),z(e,0),z(e,e.level===9?2:e.strategy>=Mt||e.level<2?4:0),z(e,ma),e.status=it,O(t),e.pending!==0)return e.last_flush=-1,D}if(e.status===ke){if(e.gzhead.extra){let a=e.pending,r=(e.gzhead.extra.length&65535)-e.gzindex;for(;e.pending+r>e.pending_buf_size;){let o=e.pending_buf_size-e.pending;if(e.pending_buf.set(e.gzhead.extra.subarray(e.gzindex,e.gzindex+o),e.pending),e.pending=e.pending_buf_size,e.gzhead.hcrc&&e.pending>a&&(t.adler=C(t.adler,e.pending_buf,e.pending-a,a)),e.gzindex+=o,O(t),e.pending!==0)return e.last_flush=-1,D;a=0,r-=o}let s=new Uint8Array(e.gzhead.extra);e.pending_buf.set(s.subarray(e.gzindex,e.gzindex+r),e.pending),e.pending+=r,e.gzhead.hcrc&&e.pending>a&&(t.adler=C(t.adler,e.pending_buf,e.pending-a,a)),e.gzindex=0}e.status=ye}if(e.status===ye){if(e.gzhead.name){let a=e.pending,r;do{if(e.pending===e.pending_buf_size){if(e.gzhead.hcrc&&e.pending>a&&(t.adler=C(t.adler,e.pending_buf,e.pending-a,a)),O(t),e.pending!==0)return e.last_flush=-1,D;a=0}e.gzindexa&&(t.adler=C(t.adler,e.pending_buf,e.pending-a,a)),e.gzindex=0}e.status=me}if(e.status===me){if(e.gzhead.comment){let a=e.pending,r;do{if(e.pending===e.pending_buf_size){if(e.gzhead.hcrc&&e.pending>a&&(t.adler=C(t.adler,e.pending_buf,e.pending-a,a)),O(t),e.pending!==0)return e.last_flush=-1,D;a=0}e.gzindexa&&(t.adler=C(t.adler,e.pending_buf,e.pending-a,a))}e.status=Ee}if(e.status===Ee){if(e.gzhead.hcrc){if(e.pending+2>e.pending_buf_size&&(O(t),e.pending!==0))return e.last_flush=-1,D;z(e,t.adler&255),z(e,t.adler>>8&255),t.adler=0}if(e.status=it,O(t),e.pending!==0)return e.last_flush=-1,D}if(t.avail_in!==0||e.lookahead!==0||n!==Q&&e.status!==kt){let a=e.level===0?ii(e,n):e.strategy===Mt?Sa(e,n):e.strategy===ca?Ta(e,n):yt[e.level].func(e,n);if((a===ot||a===vt)&&(e.status=kt),a===N||a===ot)return t.avail_out===0&&(e.last_flush=-1),D;if(a===pt&&(n===aa?ia(e):n!==on&&(ve(e,0,0,!1),n===ra&&(W(e.head),e.lookahead===0&&(e.strstart=0,e.block_start=0,e.insert=0))),O(t),t.avail_out===0))return e.last_flush=-1,D}return n!==B?D:e.wrap<=0?sn:(e.wrap===2?(z(e,t.adler&255),z(e,t.adler>>8&255),z(e,t.adler>>16&255),z(e,t.adler>>24&255),z(e,t.total_in&255),z(e,t.total_in>>8&255),z(e,t.total_in>>16&255),z(e,t.total_in>>24&255)):(xt(e,t.adler>>>16),xt(e,t.adler&65535)),O(t),e.wrap>0&&(e.wrap=-e.wrap),e.pending!==0?D:sn)},Na=t=>{if(Zt(t))return K;const n=t.state.status;return t.state=null,n===it?at(t,la):D},La=(t,n)=>{let e=n.length;if(Zt(t))return K;const i=t.state,a=i.wrap;if(a===2||a===1&&i.status!==gt||i.lookahead)return K;if(a===1&&(t.adler=Rt(t.adler,n,e,0)),i.wrap=0,e>=i.w_size){a===0&&(W(i.head),i.strstart=0,i.block_start=0,i.insert=0);let h=new Uint8Array(i.w_size);h.set(n.subarray(e-i.w_size,e),0),n=h,e=i.w_size}const r=t.avail_in,s=t.next_in,o=t.input;for(t.avail_in=e,t.next_in=0,t.input=n,wt(i);i.lookahead>=E;){let h=i.strstart,l=i.lookahead-(E-1);do i.ins_h=tt(i,i.ins_h,i.window[h+E-1]),i.prev[h&i.w_mask]=i.head[i.ins_h],i.head[i.ins_h]=h,h++;while(--l);i.strstart=h,i.lookahead=E-1,wt(i)}return i.strstart+=i.lookahead,i.block_start=i.strstart,i.insert=i.lookahead,i.lookahead=0,i.match_length=i.prev_length=E-1,i.match_available=0,t.next_in=s,t.input=o,t.avail_in=r,i.wrap=a,D};var Oa=Ca,Za=li,Ua=ri,Ba=ai,$a=Ra,Fa=Da,Ma=Na,Ha=La,Pa="pako deflate (from Nodeca project)",Et={deflateInit:Oa,deflateInit2:Za,deflateReset:Ua,deflateResetKeep:Ba,deflateSetHeader:$a,deflate:Fa,deflateEnd:Ma,deflateSetDictionary:Ha,deflateInfo:Pa};const Ga=(t,n)=>Object.prototype.hasOwnProperty.call(t,n);var Ka=function(t){const n=Array.prototype.slice.call(arguments,1);for(;n.length;){const e=n.shift();if(e){if(typeof e!="object")throw new TypeError(e+"must be non-object");for(const i in e)Ga(e,i)&&(t[i]=e[i])}}return t},Va=t=>{let n=0;for(let i=0,a=t.length;i=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;Ct[254]=Ct[254]=1;var Ya=t=>{if(typeof TextEncoder=="function"&&TextEncoder.prototype.encode)return new TextEncoder().encode(t);let n,e,i,a,r,s=t.length,o=0;for(a=0;a>>6,n[r++]=128|e&63):e<65536?(n[r++]=224|e>>>12,n[r++]=128|e>>>6&63,n[r++]=128|e&63):(n[r++]=240|e>>>18,n[r++]=128|e>>>12&63,n[r++]=128|e>>>6&63,n[r++]=128|e&63);return n};const Xa=(t,n)=>{if(n<65534&&t.subarray&&oi)return String.fromCharCode.apply(null,t.length===n?t:t.subarray(0,n));let e="";for(let i=0;i{const e=n||t.length;if(typeof TextDecoder=="function"&&TextDecoder.prototype.decode)return new TextDecoder().decode(t.subarray(0,n));let i,a;const r=new Array(e*2);for(a=0,i=0;i4){r[a++]=65533,i+=o-1;continue}for(s&=o===2?31:o===3?15:7;o>1&&i1){r[a++]=65533;continue}s<65536?r[a++]=s:(s-=65536,r[a++]=55296|s>>10&1023,r[a++]=56320|s&1023)}return Xa(r,a)},Wa=(t,n)=>{n=n||t.length,n>t.length&&(n=t.length);let e=n-1;for(;e>=0&&(t[e]&192)===128;)e--;return e<0||e===0?n:e+Ct[t[e]]>n?e:n},Dt={string2buf:Ya,buf2string:ja,utf8border:Wa};function qa(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}var si=qa;const ci=Object.prototype.toString,{Z_NO_FLUSH:Ja,Z_SYNC_FLUSH:Qa,Z_FULL_FLUSH:tr,Z_FINISH:er,Z_OK:jt,Z_STREAM_END:nr,Z_DEFAULT_COMPRESSION:ir,Z_DEFAULT_STRATEGY:ar,Z_DEFLATED:rr}=Ot;function Ut(t){this.options=ee.assign({level:ir,method:rr,chunkSize:16384,windowBits:15,memLevel:8,strategy:ar},t||{});let n=this.options;n.raw&&n.windowBits>0?n.windowBits=-n.windowBits:n.gzip&&n.windowBits>0&&n.windowBits<16&&(n.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new si,this.strm.avail_out=0;let e=Et.deflateInit2(this.strm,n.level,n.method,n.windowBits,n.memLevel,n.strategy);if(e!==jt)throw new Error(lt[e]);if(n.header&&Et.deflateSetHeader(this.strm,n.header),n.dictionary){let i;if(typeof n.dictionary=="string"?i=Dt.string2buf(n.dictionary):ci.call(n.dictionary)==="[object ArrayBuffer]"?i=new Uint8Array(n.dictionary):i=n.dictionary,e=Et.deflateSetDictionary(this.strm,i),e!==jt)throw new Error(lt[e]);this._dict_set=!0}}Ut.prototype.push=function(t,n){const e=this.strm,i=this.options.chunkSize;let a,r;if(this.ended)return!1;for(n===~~n?r=n:r=n===!0?er:Ja,typeof t=="string"?e.input=Dt.string2buf(t):ci.call(t)==="[object ArrayBuffer]"?e.input=new Uint8Array(t):e.input=t,e.next_in=0,e.avail_in=e.input.length;;){if(e.avail_out===0&&(e.output=new Uint8Array(i),e.next_out=0,e.avail_out=i),(r===Qa||r===tr)&&e.avail_out<=6){this.onData(e.output.subarray(0,e.next_out)),e.avail_out=0;continue}if(a=Et.deflate(e,r),a===nr)return e.next_out>0&&this.onData(e.output.subarray(0,e.next_out)),a=Et.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===jt;if(e.avail_out===0){this.onData(e.output);continue}if(r>0&&e.next_out>0){this.onData(e.output.subarray(0,e.next_out)),e.avail_out=0;continue}if(e.avail_in===0)break}return!0};Ut.prototype.onData=function(t){this.chunks.push(t)};Ut.prototype.onEnd=function(t){t===jt&&(this.result=ee.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function je(t,n){const e=new Ut(n);if(e.push(t,!0),e.err)throw e.msg||lt[e.err];return e.result}function lr(t,n){return n=n||{},n.raw=!0,je(t,n)}function or(t,n){return n=n||{},n.gzip=!0,je(t,n)}var sr=Ut,cr=je,fr=lr,hr=or,_r={Deflate:sr,deflate:cr,deflateRaw:fr,gzip:hr};const Ht=16209,ur=16191;var dr=function(n,e){let i,a,r,s,o,h,l,c,p,u,f,g,I,m,b,T,k,_,y,S,d,A,x,w;const v=n.state;i=n.next_in,x=n.input,a=i+(n.avail_in-5),r=n.next_out,w=n.output,s=r-(e-n.avail_out),o=r+(n.avail_out-257),h=v.dmax,l=v.wsize,c=v.whave,p=v.wnext,u=v.window,f=v.hold,g=v.bits,I=v.lencode,m=v.distcode,b=(1<>>24,f>>>=_,g-=_,_=k>>>16&255,_===0)w[r++]=k&65535;else if(_&16){y=k&65535,_&=15,_&&(g<_&&(f+=x[i++]<>>=_,g-=_),g<15&&(f+=x[i++]<>>24,f>>>=_,g-=_,_=k>>>16&255,_&16){if(S=k&65535,_&=15,g<_&&(f+=x[i++]<h){n.msg="invalid distance too far back",v.mode=Ht;break t}if(f>>>=_,g-=_,_=r-s,S>_){if(_=S-_,_>c&&v.sane){n.msg="invalid distance too far back",v.mode=Ht;break t}if(d=0,A=u,p===0){if(d+=l-_,_2;)w[r++]=A[d++],w[r++]=A[d++],w[r++]=A[d++],y-=3;y&&(w[r++]=A[d++],y>1&&(w[r++]=A[d++]))}else{d=r-S;do w[r++]=w[d++],w[r++]=w[d++],w[r++]=w[d++],y-=3;while(y>2);y&&(w[r++]=w[d++],y>1&&(w[r++]=w[d++]))}}else if((_&64)===0){k=m[(k&65535)+(f&(1<<_)-1)];continue n}else{n.msg="invalid distance code",v.mode=Ht;break t}break}}else if((_&64)===0){k=I[(k&65535)+(f&(1<<_)-1)];continue e}else if(_&32){v.mode=ur;break t}else{n.msg="invalid literal/length code",v.mode=Ht;break t}break}}while(i>3,i-=y,g-=y<<3,f&=(1<{const h=o.bits;let l=0,c=0,p=0,u=0,f=0,g=0,I=0,m=0,b=0,T=0,k,_,y,S,d,A=null,x;const w=new Uint16Array(ht+1),v=new Uint16Array(ht+1);let et=null,qe,$t,Ft;for(l=0;l<=ht;l++)w[l]=0;for(c=0;c=1&&w[u]===0;u--);if(f>u&&(f=u),u===0)return a[r++]=1<<24|64<<16|0,a[r++]=1<<24|64<<16|0,o.bits=1,0;for(p=1;p0&&(t===_n||u!==1))return-1;for(v[1]=0,l=1;lfn||t===un&&b>hn)return 1;for(;;){qe=l-I,s[c]+1=x?($t=et[s[c]-x],Ft=A[s[c]-x]):($t=96,Ft=0),k=1<>I)+_]=qe<<24|$t<<16|Ft|0;while(_!==0);for(k=1<>=1;if(k!==0?(T&=k-1,T+=k):T=0,c++,--w[l]===0){if(l===u)break;l=n[e+s[c]]}if(l>f&&(T&S)!==y){for(I===0&&(I=f),d+=p,g=l-I,m=1<fn||t===un&&b>hn)return 1;y=T&S,a[y]=f<<24|g<<16|d-r|0}}return T!==0&&(a[d+T]=l-I<<24|64<<16|0),o.bits=f,0};var At=vr;const xr=0,fi=1,hi=2,{Z_FINISH:dn,Z_BLOCK:kr,Z_TREES:Pt,Z_OK:st,Z_STREAM_END:yr,Z_NEED_DICT:mr,Z_STREAM_ERROR:$,Z_DATA_ERROR:_i,Z_MEM_ERROR:ui,Z_BUF_ERROR:Er,Z_DEFLATED:gn}=Ot,ne=16180,wn=16181,bn=16182,pn=16183,vn=16184,xn=16185,kn=16186,yn=16187,mn=16188,En=16189,Wt=16190,Y=16191,fe=16192,An=16193,he=16194,Tn=16195,Sn=16196,zn=16197,In=16198,Gt=16199,Kt=16200,Rn=16201,Cn=16202,Dn=16203,Nn=16204,Ln=16205,_e=16206,On=16207,Zn=16208,R=16209,di=16210,gi=16211,Ar=852,Tr=592,Sr=15,zr=Sr,Un=t=>(t>>>24&255)+(t>>>8&65280)+((t&65280)<<8)+((t&255)<<24);function Ir(){this.strm=null,this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}const ct=t=>{if(!t)return 1;const n=t.state;return!n||n.strm!==t||n.modegi?1:0},wi=t=>{if(ct(t))return $;const n=t.state;return t.total_in=t.total_out=n.total=0,t.msg="",n.wrap&&(t.adler=n.wrap&1),n.mode=ne,n.last=0,n.havedict=0,n.flags=-1,n.dmax=32768,n.head=null,n.hold=0,n.bits=0,n.lencode=n.lendyn=new Int32Array(Ar),n.distcode=n.distdyn=new Int32Array(Tr),n.sane=1,n.back=-1,st},bi=t=>{if(ct(t))return $;const n=t.state;return n.wsize=0,n.whave=0,n.wnext=0,wi(t)},pi=(t,n)=>{let e;if(ct(t))return $;const i=t.state;return n<0?(e=0,n=-n):(e=(n>>4)+5,n<48&&(n&=15)),n&&(n<8||n>15)?$:(i.window!==null&&i.wbits!==n&&(i.window=null),i.wrap=e,i.wbits=n,bi(t))},vi=(t,n)=>{if(!t)return $;const e=new Ir;t.state=e,e.strm=t,e.window=null,e.mode=ne;const i=pi(t,n);return i!==st&&(t.state=null),i},Rr=t=>vi(t,zr);let Bn=!0,ue,de;const Cr=t=>{if(Bn){ue=new Int32Array(512),de=new Int32Array(32);let n=0;for(;n<144;)t.lens[n++]=8;for(;n<256;)t.lens[n++]=9;for(;n<280;)t.lens[n++]=7;for(;n<288;)t.lens[n++]=8;for(At(fi,t.lens,0,288,ue,0,t.work,{bits:9}),n=0;n<32;)t.lens[n++]=5;At(hi,t.lens,0,32,de,0,t.work,{bits:5}),Bn=!1}t.lencode=ue,t.lenbits=9,t.distcode=de,t.distbits=5},xi=(t,n,e,i)=>{let a;const r=t.state;return r.window===null&&(r.wsize=1<=r.wsize?(r.window.set(n.subarray(e-r.wsize,e),0),r.wnext=0,r.whave=r.wsize):(a=r.wsize-r.wnext,a>i&&(a=i),r.window.set(n.subarray(e-i,e-i+a),r.wnext),i-=a,i?(r.window.set(n.subarray(e-i,e),0),r.wnext=i,r.whave=r.wsize):(r.wnext+=a,r.wnext===r.wsize&&(r.wnext=0),r.whave{let e,i,a,r,s,o,h,l,c,p,u,f,g,I,m=0,b,T,k,_,y,S,d,A;const x=new Uint8Array(4);let w,v;const et=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(ct(t)||!t.output||!t.input&&t.avail_in!==0)return $;e=t.state,e.mode===Y&&(e.mode=fe),s=t.next_out,a=t.output,h=t.avail_out,r=t.next_in,i=t.input,o=t.avail_in,l=e.hold,c=e.bits,p=o,u=h,A=st;t:for(;;)switch(e.mode){case ne:if(e.wrap===0){e.mode=fe;break}for(;c<16;){if(o===0)break t;o--,l+=i[r++]<>>8&255,e.check=C(e.check,x,2,0),l=0,c=0,e.mode=wn;break}if(e.head&&(e.head.done=!1),!(e.wrap&1)||(((l&255)<<8)+(l>>8))%31){t.msg="incorrect header check",e.mode=R;break}if((l&15)!==gn){t.msg="unknown compression method",e.mode=R;break}if(l>>>=4,c-=4,d=(l&15)+8,e.wbits===0&&(e.wbits=d),d>15||d>e.wbits){t.msg="invalid window size",e.mode=R;break}e.dmax=1<>8&1),e.flags&512&&e.wrap&4&&(x[0]=l&255,x[1]=l>>>8&255,e.check=C(e.check,x,2,0)),l=0,c=0,e.mode=bn;case bn:for(;c<32;){if(o===0)break t;o--,l+=i[r++]<>>8&255,x[2]=l>>>16&255,x[3]=l>>>24&255,e.check=C(e.check,x,4,0)),l=0,c=0,e.mode=pn;case pn:for(;c<16;){if(o===0)break t;o--,l+=i[r++]<>8),e.flags&512&&e.wrap&4&&(x[0]=l&255,x[1]=l>>>8&255,e.check=C(e.check,x,2,0)),l=0,c=0,e.mode=vn;case vn:if(e.flags&1024){for(;c<16;){if(o===0)break t;o--,l+=i[r++]<>>8&255,e.check=C(e.check,x,2,0)),l=0,c=0}else e.head&&(e.head.extra=null);e.mode=xn;case xn:if(e.flags&1024&&(f=e.length,f>o&&(f=o),f&&(e.head&&(d=e.head.extra_len-e.length,e.head.extra||(e.head.extra=new Uint8Array(e.head.extra_len)),e.head.extra.set(i.subarray(r,r+f),d)),e.flags&512&&e.wrap&4&&(e.check=C(e.check,i,f,r)),o-=f,r+=f,e.length-=f),e.length))break t;e.length=0,e.mode=kn;case kn:if(e.flags&2048){if(o===0)break t;f=0;do d=i[r+f++],e.head&&d&&e.length<65536&&(e.head.name+=String.fromCharCode(d));while(d&&f>9&1,e.head.done=!0),t.adler=e.check=0,e.mode=Y;break;case En:for(;c<32;){if(o===0)break t;o--,l+=i[r++]<>>=c&7,c-=c&7,e.mode=_e;break}for(;c<3;){if(o===0)break t;o--,l+=i[r++]<>>=1,c-=1,l&3){case 0:e.mode=An;break;case 1:if(Cr(e),e.mode=Gt,n===Pt){l>>>=2,c-=2;break t}break;case 2:e.mode=Sn;break;case 3:t.msg="invalid block type",e.mode=R}l>>>=2,c-=2;break;case An:for(l>>>=c&7,c-=c&7;c<32;){if(o===0)break t;o--,l+=i[r++]<>>16^65535)){t.msg="invalid stored block lengths",e.mode=R;break}if(e.length=l&65535,l=0,c=0,e.mode=he,n===Pt)break t;case he:e.mode=Tn;case Tn:if(f=e.length,f){if(f>o&&(f=o),f>h&&(f=h),f===0)break t;a.set(i.subarray(r,r+f),s),o-=f,r+=f,h-=f,s+=f,e.length-=f;break}e.mode=Y;break;case Sn:for(;c<14;){if(o===0)break t;o--,l+=i[r++]<>>=5,c-=5,e.ndist=(l&31)+1,l>>>=5,c-=5,e.ncode=(l&15)+4,l>>>=4,c-=4,e.nlen>286||e.ndist>30){t.msg="too many length or distance symbols",e.mode=R;break}e.have=0,e.mode=zn;case zn:for(;e.have>>=3,c-=3}for(;e.have<19;)e.lens[et[e.have++]]=0;if(e.lencode=e.lendyn,e.lenbits=7,w={bits:e.lenbits},A=At(xr,e.lens,0,19,e.lencode,0,e.work,w),e.lenbits=w.bits,A){t.msg="invalid code lengths set",e.mode=R;break}e.have=0,e.mode=In;case In:for(;e.have>>24,T=m>>>16&255,k=m&65535,!(b<=c);){if(o===0)break t;o--,l+=i[r++]<>>=b,c-=b,e.lens[e.have++]=k;else{if(k===16){for(v=b+2;c>>=b,c-=b,e.have===0){t.msg="invalid bit length repeat",e.mode=R;break}d=e.lens[e.have-1],f=3+(l&3),l>>>=2,c-=2}else if(k===17){for(v=b+3;c>>=b,c-=b,d=0,f=3+(l&7),l>>>=3,c-=3}else{for(v=b+7;c>>=b,c-=b,d=0,f=11+(l&127),l>>>=7,c-=7}if(e.have+f>e.nlen+e.ndist){t.msg="invalid bit length repeat",e.mode=R;break}for(;f--;)e.lens[e.have++]=d}}if(e.mode===R)break;if(e.lens[256]===0){t.msg="invalid code -- missing end-of-block",e.mode=R;break}if(e.lenbits=9,w={bits:e.lenbits},A=At(fi,e.lens,0,e.nlen,e.lencode,0,e.work,w),e.lenbits=w.bits,A){t.msg="invalid literal/lengths set",e.mode=R;break}if(e.distbits=6,e.distcode=e.distdyn,w={bits:e.distbits},A=At(hi,e.lens,e.nlen,e.ndist,e.distcode,0,e.work,w),e.distbits=w.bits,A){t.msg="invalid distances set",e.mode=R;break}if(e.mode=Gt,n===Pt)break t;case Gt:e.mode=Kt;case Kt:if(o>=6&&h>=258){t.next_out=s,t.avail_out=h,t.next_in=r,t.avail_in=o,e.hold=l,e.bits=c,dr(t,u),s=t.next_out,a=t.output,h=t.avail_out,r=t.next_in,i=t.input,o=t.avail_in,l=e.hold,c=e.bits,e.mode===Y&&(e.back=-1);break}for(e.back=0;m=e.lencode[l&(1<>>24,T=m>>>16&255,k=m&65535,!(b<=c);){if(o===0)break t;o--,l+=i[r++]<>_)],b=m>>>24,T=m>>>16&255,k=m&65535,!(_+b<=c);){if(o===0)break t;o--,l+=i[r++]<>>=_,c-=_,e.back+=_}if(l>>>=b,c-=b,e.back+=b,e.length=k,T===0){e.mode=Ln;break}if(T&32){e.back=-1,e.mode=Y;break}if(T&64){t.msg="invalid literal/length code",e.mode=R;break}e.extra=T&15,e.mode=Rn;case Rn:if(e.extra){for(v=e.extra;c>>=e.extra,c-=e.extra,e.back+=e.extra}e.was=e.length,e.mode=Cn;case Cn:for(;m=e.distcode[l&(1<>>24,T=m>>>16&255,k=m&65535,!(b<=c);){if(o===0)break t;o--,l+=i[r++]<>_)],b=m>>>24,T=m>>>16&255,k=m&65535,!(_+b<=c);){if(o===0)break t;o--,l+=i[r++]<>>=_,c-=_,e.back+=_}if(l>>>=b,c-=b,e.back+=b,T&64){t.msg="invalid distance code",e.mode=R;break}e.offset=k,e.extra=T&15,e.mode=Dn;case Dn:if(e.extra){for(v=e.extra;c>>=e.extra,c-=e.extra,e.back+=e.extra}if(e.offset>e.dmax){t.msg="invalid distance too far back",e.mode=R;break}e.mode=Nn;case Nn:if(h===0)break t;if(f=u-h,e.offset>f){if(f=e.offset-f,f>e.whave&&e.sane){t.msg="invalid distance too far back",e.mode=R;break}f>e.wnext?(f-=e.wnext,g=e.wsize-f):g=e.wnext-f,f>e.length&&(f=e.length),I=e.window}else I=a,g=s-e.offset,f=e.length;f>h&&(f=h),h-=f,e.length-=f;do a[s++]=I[g++];while(--f);e.length===0&&(e.mode=Kt);break;case Ln:if(h===0)break t;a[s++]=e.length,h--,e.mode=Kt;break;case _e:if(e.wrap){for(;c<32;){if(o===0)break t;o--,l|=i[r++]<{if(ct(t))return $;let n=t.state;return n.window&&(n.window=null),t.state=null,st},Lr=(t,n)=>{if(ct(t))return $;const e=t.state;return(e.wrap&2)===0?$:(e.head=n,n.done=!1,st)},Or=(t,n)=>{const e=n.length;let i,a,r;return ct(t)||(i=t.state,i.wrap!==0&&i.mode!==Wt)?$:i.mode===Wt&&(a=1,a=Rt(a,n,e,0),a!==i.check)?_i:(r=xi(t,n,e,e),r?(i.mode=di,ui):(i.havedict=1,st))};var Zr=bi,Ur=pi,Br=wi,$r=Rr,Fr=vi,Mr=Dr,Hr=Nr,Pr=Lr,Gr=Or,Kr="pako inflate (from Nodeca project)",j={inflateReset:Zr,inflateReset2:Ur,inflateResetKeep:Br,inflateInit:$r,inflateInit2:Fr,inflate:Mr,inflateEnd:Hr,inflateGetHeader:Pr,inflateSetDictionary:Gr,inflateInfo:Kr};function Vr(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}var Yr=Vr;const ki=Object.prototype.toString,{Z_NO_FLUSH:Xr,Z_FINISH:jr,Z_OK:Nt,Z_STREAM_END:ge,Z_NEED_DICT:we,Z_STREAM_ERROR:Wr,Z_DATA_ERROR:$n,Z_MEM_ERROR:qr}=Ot;function Bt(t){this.options=ee.assign({chunkSize:1024*64,windowBits:15,to:""},t||{});const n=this.options;n.raw&&n.windowBits>=0&&n.windowBits<16&&(n.windowBits=-n.windowBits,n.windowBits===0&&(n.windowBits=-15)),n.windowBits>=0&&n.windowBits<16&&!(t&&t.windowBits)&&(n.windowBits+=32),n.windowBits>15&&n.windowBits<48&&(n.windowBits&15)===0&&(n.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new si,this.strm.avail_out=0;let e=j.inflateInit2(this.strm,n.windowBits);if(e!==Nt)throw new Error(lt[e]);if(this.header=new Yr,j.inflateGetHeader(this.strm,this.header),n.dictionary&&(typeof n.dictionary=="string"?n.dictionary=Dt.string2buf(n.dictionary):ki.call(n.dictionary)==="[object ArrayBuffer]"&&(n.dictionary=new Uint8Array(n.dictionary)),n.raw&&(e=j.inflateSetDictionary(this.strm,n.dictionary),e!==Nt)))throw new Error(lt[e])}Bt.prototype.push=function(t,n){const e=this.strm,i=this.options.chunkSize,a=this.options.dictionary;let r,s,o;if(this.ended)return!1;for(n===~~n?s=n:s=n===!0?jr:Xr,ki.call(t)==="[object ArrayBuffer]"?e.input=new Uint8Array(t):e.input=t,e.next_in=0,e.avail_in=e.input.length;;){for(e.avail_out===0&&(e.output=new Uint8Array(i),e.next_out=0,e.avail_out=i),r=j.inflate(e,s),r===we&&a&&(r=j.inflateSetDictionary(e,a),r===Nt?r=j.inflate(e,s):r===$n&&(r=we));e.avail_in>0&&r===ge&&e.state.wrap>0&&t[e.next_in]!==0;)j.inflateReset(e),r=j.inflate(e,s);switch(r){case Wr:case $n:case we:case qr:return this.onEnd(r),this.ended=!0,!1}if(o=e.avail_out,e.next_out&&(e.avail_out===0||r===ge))if(this.options.to==="string"){let h=Dt.utf8border(e.output,e.next_out),l=e.next_out-h,c=Dt.buf2string(e.output,h);e.next_out=l,e.avail_out=i-l,l&&e.output.set(e.output.subarray(h,h+l),0),this.onData(c)}else this.onData(e.output.length===e.next_out?e.output:e.output.subarray(0,e.next_out));if(!(r===Nt&&o===0)){if(r===ge)return r=j.inflateEnd(this.strm),this.onEnd(r),this.ended=!0,!0;if(e.avail_in===0)break}}return!0};Bt.prototype.onData=function(t){this.chunks.push(t)};Bt.prototype.onEnd=function(t){t===Nt&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=ee.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function We(t,n){const e=new Bt(n);if(e.push(t),e.err)throw e.msg||lt[e.err];return e.result}function Jr(t,n){return n=n||{},n.raw=!0,We(t,n)}var Qr=Bt,tl=We,el=Jr,nl=We,il={Inflate:Qr,inflate:tl,inflateRaw:el,ungzip:nl};const{Deflate:al,deflate:rl,deflateRaw:ll,gzip:ol}=_r,{Inflate:sl,inflate:cl,inflateRaw:fl,ungzip:hl}=il;var _l=al,ul=rl,dl=ll,gl=ol,wl=sl,bl=cl,pl=fl,vl=hl,xl=Ot,yi={Deflate:_l,deflate:ul,deflateRaw:dl,gzip:gl,Inflate:wl,inflate:bl,inflateRaw:pl,ungzip:vl,constants:xl};class mi extends Error{constructor(n){super(n),this.name="NbtException"}}function Te(t){const n=t.getType();switch(n){case Se:return 1;case ze:return 2;case _t:return 4;case Ie:return 8;case Re:return 4;case Qt:return 8;case Ce:return 4+t.values.length;case De:{const e=t;return 2+new TextEncoder().encode(e.value).length}case Ne:{const e=t;let i=5;for(const a of e)i+=Te(a);return i}case M:{const e=t;let i=0;const a=new TextEncoder;for(const r of e.keySet()){const s=e.get(r);i+=1;const o=a.encode(r);i+=2+o.length,i+=Te(s)}return i+=1,i}case Le:return 4+t.values.length*4;case Oe:return 4+t.values.length*8;default:throw new mi(`Unknown tag type: ${n}`)}}function kl(t){const n=new DataView(t.buffer,t.byteOffset,t.byteLength),e={value:0},i=n.getInt8(e.value);if(e.value+=1,i!==M)throw new mi("File isn't in NBT format");const a=n.getUint16(e.value,!1);return e.value+=2+a,F.readContents(n,e)}function yl(t){const e=3+Te(t),i=new ArrayBuffer(e),a=new DataView(i),r={value:0};return a.setInt8(r.value,M),r.value+=1,a.setUint16(r.value,0,!1),r.value+=2,t.writeContents(a,r),new Uint8Array(i)}function ml(t){const n=yi.inflate(t);return kl(n)}function El(t){const n=yl(t);return yi.gzip(n)}function Al(t){const n=new F;if(t.includes("[")){const e=t.substring(0,t.indexOf("["));n.put("Name",new rt(e));const i=t.substring(t.indexOf("[")+1,t.indexOf("]")),a=new F;for(const r of i.split(",")){const[s,o]=r.split("=");a.put(s,new rt(o))}n.put("Properties",a)}else n.put("Name",new rt(t));return n}function Tl(t){const n=[];if(n.push(t.getString("Name")),t.contains("Properties",M)){const e=t.getCompound("Properties");n.push("[");const i=Array.from(e.keySet());for(let a=0;aBigInt.asIntN(64,e)))}}function zl(t,n){const e=ml(t),i=e.getCompound("Regions"),a=Array.from(i.keySet());if(a.length>1)throw new Sl("不支持多区域 .litematic 文件");const r=i.getCompound(a[0]),s=r.getList("BlockStatePalette"),o=r.getCompound("Size"),h=[Math.abs(o.getInt("x")),Math.abs(o.getInt("y")),Math.abs(o.getInt("z"))],l=r.getCompound("Position"),c=l.getInt("x"),p=l.getInt("y"),u=l.getInt("z"),f=[];for(let _=0;__===0);let k=0;for(let _=0;_=0&&d(n[n.END=0]="END",n[n.BYTE=1]="BYTE",n[n.SHORT=2]="SHORT",n[n.INT=3]="INT",n[n.LONG=4]="LONG",n[n.FLOAT=5]="FLOAT",n[n.DOUBLE=6]="DOUBLE",n[n.BYTE_ARRAY=7]="BYTE_ARRAY",n[n.STRING=8]="STRING",n[n.LIST=9]="LIST",n[n.COMPOUND=10]="COMPOUND",n[n.INT_ARRAY=11]="INT_ARRAY",n[n.LONG_ARRAY=12]="LONG_ARRAY",n))(g||{});function D(n,t=null){return{type:1,name:t,value:n}}function B(n,t=null){return{type:2,name:t,value:n}}function C(n,t=null){return{type:3,name:t,value:n}}function St(n,t=null){return{type:4,name:t,value:n}}function It(n,t=null){return{type:5,name:t,value:n}}function At(n,t=null){return{type:6,name:t,value:n}}function Nt(n,t=null){return{type:7,name:t,value:n}}function M(n,t=null){return{type:8,name:t,value:n}}function L(n,t,e=null){return{type:9,name:e,value:n,elementType:t}}function A(n,t=null){return{type:10,name:t,value:n}}function Dt(n,t=null){return{type:11,name:t,value:n}}function Tt(n,t=null){return{type:12,name:t,value:n}}function Rt(n){const t=[];let e=0;for(;e>6&31,128|a&63);else if(a<=65535)t.push(224|a>>12&15,128|a>>6&63,128|a&63);else{const o=a-65536,i=55296|o>>10&1023,c=56320|o&1023;t.push(237,160|i>>10&15,128|i&63),t.push(237,176|c>>10&15,128|c&63),e++}}return new Uint8Array(t)}class Ot{buffer;view;offset;littleEndian;capacity;constructor(t=1024,e=!0){this.capacity=t,this.buffer=new Uint8Array(t),this.view=new DataView(this.buffer.buffer),this.offset=0,this.littleEndian=e}ensureCapacity(t){if(this.offset+t>this.capacity){let e=this.capacity;for(;e=0;)n[t]=0}const Ut=3,zt=258,ve=29,$t=256+1+ve,xe=30,Vt=512,Pt=new Array(($t+2)*2);H(Pt);const Ft=new Array(xe*2);H(Ft);const Zt=new Array(Vt);H(Zt);const jt=new Array(zt-Ut+1);H(jt);const Yt=new Array(ve);H(Yt);const Gt=new Array(xe);H(Gt);var ce=(n,t,e,a)=>{let o=n&65535|0,i=n>>>16&65535|0,c=0;for(;e!==0;){c=e>2e3?2e3:e,e-=c;do o=o+t[a++]|0,i=i+o|0;while(--c);o%=65521,i%=65521}return o|i<<16|0};const Ht=()=>{let n,t=[];for(var e=0;e<256;e++){n=e;for(var a=0;a<8;a++)n=n&1?3988292384^n>>>1:n>>>1;t[e]=n}return t},Kt=new Uint32Array(Ht());var U=(n,t,e,a)=>{const o=Kt,i=a+e;n^=-1;for(let c=a;c>>8^o[(n^t[c])&255];return n^-1},fe={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},ye={Z_NO_FLUSH:0,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_DEFLATED:8};const Jt=(n,t)=>Object.prototype.hasOwnProperty.call(n,t);var Wt=function(n){const t=Array.prototype.slice.call(arguments,1);for(;t.length;){const e=t.shift();if(e){if(typeof e!="object")throw new TypeError(e+"must be non-object");for(const a in e)Jt(e,a)&&(n[a]=e[a])}}return n},Xt=n=>{let t=0;for(let a=0,o=n.length;a=252?6:n>=248?5:n>=240?4:n>=224?3:n>=192?2:1;W[254]=W[254]=1;var qt=n=>{if(typeof TextEncoder=="function"&&TextEncoder.prototype.encode)return new TextEncoder().encode(n);let t,e,a,o,i,c=n.length,r=0;for(o=0;o>>6,t[i++]=128|e&63):e<65536?(t[i++]=224|e>>>12,t[i++]=128|e>>>6&63,t[i++]=128|e&63):(t[i++]=240|e>>>18,t[i++]=128|e>>>12&63,t[i++]=128|e>>>6&63,t[i++]=128|e&63);return t};const Qt=(n,t)=>{if(t<65534&&n.subarray&&Se)return String.fromCharCode.apply(null,n.length===t?n:n.subarray(0,t));let e="";for(let a=0;a{const e=t||n.length;if(typeof TextDecoder=="function"&&TextDecoder.prototype.decode)return new TextDecoder().decode(n.subarray(0,t));let a,o;const i=new Array(e*2);for(o=0,a=0;a4){i[o++]=65533,a+=r-1;continue}for(c&=r===2?31:r===3?15:7;r>1&&a1){i[o++]=65533;continue}c<65536?i[o++]=c:(c-=65536,i[o++]=55296|c>>10&1023,i[o++]=56320|c&1023)}return Qt(i,o)},tn=(n,t)=>{t=t||n.length,t>n.length&&(t=n.length);let e=t-1;for(;e>=0&&(n[e]&192)===128;)e--;return e<0||e===0?t:e+W[n[e]]>t?e:t},ue={string2buf:qt,buf2string:en,utf8border:tn};function nn(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}var an=nn;const te=16209,sn=16191;var rn=function(t,e){let a,o,i,c,r,u,s,l,d,w,f,p,T,v,m,I,k,h,x,R,b,S,y,_;const E=t.state;a=t.next_in,y=t.input,o=a+(t.avail_in-5),i=t.next_out,_=t.output,c=i-(e-t.avail_out),r=i+(t.avail_out-257),u=E.dmax,s=E.wsize,l=E.whave,d=E.wnext,w=E.window,f=E.hold,p=E.bits,T=E.lencode,v=E.distcode,m=(1<>>24,f>>>=h,p-=h,h=k>>>16&255,h===0)_[i++]=k&65535;else if(h&16){x=k&65535,h&=15,h&&(p>>=h,p-=h),p<15&&(f+=y[a++]<>>24,f>>>=h,p-=h,h=k>>>16&255,h&16){if(R=k&65535,h&=15,pu){t.msg="invalid distance too far back",E.mode=te;break e}if(f>>>=h,p-=h,h=i-c,R>h){if(h=R-h,h>l&&E.sane){t.msg="invalid distance too far back",E.mode=te;break e}if(b=0,S=w,d===0){if(b+=s-h,h2;)_[i++]=S[b++],_[i++]=S[b++],_[i++]=S[b++],x-=3;x&&(_[i++]=S[b++],x>1&&(_[i++]=S[b++]))}else{b=i-R;do _[i++]=_[b++],_[i++]=_[b++],_[i++]=_[b++],x-=3;while(x>2);x&&(_[i++]=_[b++],x>1&&(_[i++]=_[b++]))}}else if((h&64)===0){k=v[(k&65535)+(f&(1<>3,a-=x,p-=x<<3,f&=(1<{const u=r.bits;let s=0,l=0,d=0,w=0,f=0,p=0,T=0,v=0,m=0,I=0,k,h,x,R,b,S=null,y;const _=new Uint16Array(K+1),E=new Uint16Array(K+1);let V=null,ee,G,F;for(s=0;s<=K;s++)_[s]=0;for(l=0;l=1&&_[w]===0;w--);if(f>w&&(f=w),w===0)return o[i++]=1<<24|64<<16|0,o[i++]=1<<24|64<<16|0,r.bits=1,0;for(d=1;d0&&(n===Ne||w!==1))return-1;for(E[1]=0,s=1;sIe||n===De&&m>Ae)return 1;for(;;){ee=s-T,c[l]+1=y?(G=V[c[l]-y],F=S[c[l]-y]):(G=96,F=0),k=1<>T)+h]=ee<<24|G<<16|F|0;while(h!==0);for(k=1<>=1;if(k!==0?(I&=k-1,I+=k):I=0,l++,--_[s]===0){if(s===w)break;s=t[e+c[l]]}if(s>f&&(I&R)!==x){for(T===0&&(T=f),b+=d,p=s-T,v=1<Ie||n===De&&m>Ae)return 1;x=I&R,o[x]=f<<24|p<<16|b-i|0}}return I!==0&&(o[b+I]=s-T<<24|64<<16|0),r.bits=f,0};const un=0,Te=1,Re=2,{Z_FINISH:Me,Z_BLOCK:hn,Z_TREES:ne,Z_OK:Z,Z_STREAM_END:dn,Z_NEED_DICT:wn,Z_STREAM_ERROR:O,Z_DATA_ERROR:Ce,Z_MEM_ERROR:Be,Z_BUF_ERROR:bn,Z_DEFLATED:Oe}=ye,ae=16180,Le=16181,Ue=16182,ze=16183,$e=16184,Ve=16185,Pe=16186,Fe=16187,Ze=16188,je=16189,ie=16190,z=16191,de=16192,Ye=16193,we=16194,Ge=16195,He=16196,Ke=16197,Je=16198,se=16199,re=16200,We=16201,Xe=16202,qe=16203,Qe=16204,et=16205,be=16206,tt=16207,nt=16208,N=16209,at=16210,it=16211,pn=852,gn=592,_n=15,st=n=>(n>>>24&255)+(n>>>8&65280)+((n&65280)<<8)+((n&255)<<24);function mn(){this.strm=null,this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}const j=n=>{if(!n)return 1;const t=n.state;return!t||t.strm!==n||t.modeit?1:0},rt=n=>{if(j(n))return O;const t=n.state;return n.total_in=n.total_out=t.total=0,n.msg="",t.wrap&&(n.adler=t.wrap&1),t.mode=ae,t.last=0,t.havedict=0,t.flags=-1,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new Int32Array(pn),t.distcode=t.distdyn=new Int32Array(gn),t.sane=1,t.back=-1,Z},ot=n=>{if(j(n))return O;const t=n.state;return t.wsize=0,t.whave=0,t.wnext=0,rt(n)},lt=(n,t)=>{let e;if(j(n))return O;const a=n.state;return t<0?(e=0,t=-t):(e=(t>>4)+5,t<48&&(t&=15)),t&&(t<8||t>15)?O:(a.window!==null&&a.wbits!==t&&(a.window=null),a.wrap=e,a.wbits=t,ot(n))},ct=(n,t)=>{if(!n)return O;const e=new mn;n.state=e,e.strm=n,e.window=null,e.mode=ae;const a=lt(n,t);return a!==Z&&(n.state=null),a},kn=n=>ct(n,_n);let ft=!0,pe,ge;const vn=n=>{if(ft){pe=new Int32Array(512),ge=new Int32Array(32);let t=0;for(;t<144;)n.lens[t++]=8;for(;t<256;)n.lens[t++]=9;for(;t<280;)n.lens[t++]=7;for(;t<288;)n.lens[t++]=8;for(X(Te,n.lens,0,288,pe,0,n.work,{bits:9}),t=0;t<32;)n.lens[t++]=5;X(Re,n.lens,0,32,ge,0,n.work,{bits:5}),ft=!1}n.lencode=pe,n.lenbits=9,n.distcode=ge,n.distbits=5},ut=(n,t,e,a)=>{let o;const i=n.state;return i.window===null&&(i.wsize=1<=i.wsize?(i.window.set(t.subarray(e-i.wsize,e),0),i.wnext=0,i.whave=i.wsize):(o=i.wsize-i.wnext,o>a&&(o=a),i.window.set(t.subarray(e-a,e-a+o),i.wnext),a-=o,a?(i.window.set(t.subarray(e-a,e),0),i.wnext=a,i.whave=i.wsize):(i.wnext+=o,i.wnext===i.wsize&&(i.wnext=0),i.whave{let e,a,o,i,c,r,u,s,l,d,w,f,p,T,v=0,m,I,k,h,x,R,b,S;const y=new Uint8Array(4);let _,E;const V=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(j(n)||!n.output||!n.input&&n.avail_in!==0)return O;e=n.state,e.mode===z&&(e.mode=de),c=n.next_out,o=n.output,u=n.avail_out,i=n.next_in,a=n.input,r=n.avail_in,s=e.hold,l=e.bits,d=r,w=u,S=Z;e:for(;;)switch(e.mode){case ae:if(e.wrap===0){e.mode=de;break}for(;l<16;){if(r===0)break e;r--,s+=a[i++]<>>8&255,e.check=U(e.check,y,2,0),s=0,l=0,e.mode=Le;break}if(e.head&&(e.head.done=!1),!(e.wrap&1)||(((s&255)<<8)+(s>>8))%31){n.msg="incorrect header check",e.mode=N;break}if((s&15)!==Oe){n.msg="unknown compression method",e.mode=N;break}if(s>>>=4,l-=4,b=(s&15)+8,e.wbits===0&&(e.wbits=b),b>15||b>e.wbits){n.msg="invalid window size",e.mode=N;break}e.dmax=1<>8&1),e.flags&512&&e.wrap&4&&(y[0]=s&255,y[1]=s>>>8&255,e.check=U(e.check,y,2,0)),s=0,l=0,e.mode=Ue;case Ue:for(;l<32;){if(r===0)break e;r--,s+=a[i++]<>>8&255,y[2]=s>>>16&255,y[3]=s>>>24&255,e.check=U(e.check,y,4,0)),s=0,l=0,e.mode=ze;case ze:for(;l<16;){if(r===0)break e;r--,s+=a[i++]<>8),e.flags&512&&e.wrap&4&&(y[0]=s&255,y[1]=s>>>8&255,e.check=U(e.check,y,2,0)),s=0,l=0,e.mode=$e;case $e:if(e.flags&1024){for(;l<16;){if(r===0)break e;r--,s+=a[i++]<>>8&255,e.check=U(e.check,y,2,0)),s=0,l=0}else e.head&&(e.head.extra=null);e.mode=Ve;case Ve:if(e.flags&1024&&(f=e.length,f>r&&(f=r),f&&(e.head&&(b=e.head.extra_len-e.length,e.head.extra||(e.head.extra=new Uint8Array(e.head.extra_len)),e.head.extra.set(a.subarray(i,i+f),b)),e.flags&512&&e.wrap&4&&(e.check=U(e.check,a,f,i)),r-=f,i+=f,e.length-=f),e.length))break e;e.length=0,e.mode=Pe;case Pe:if(e.flags&2048){if(r===0)break e;f=0;do b=a[i+f++],e.head&&b&&e.length<65536&&(e.head.name+=String.fromCharCode(b));while(b&&f>9&1,e.head.done=!0),n.adler=e.check=0,e.mode=z;break;case je:for(;l<32;){if(r===0)break e;r--,s+=a[i++]<>>=l&7,l-=l&7,e.mode=be;break}for(;l<3;){if(r===0)break e;r--,s+=a[i++]<>>=1,l-=1,s&3){case 0:e.mode=Ye;break;case 1:if(vn(e),e.mode=se,t===ne){s>>>=2,l-=2;break e}break;case 2:e.mode=He;break;case 3:n.msg="invalid block type",e.mode=N}s>>>=2,l-=2;break;case Ye:for(s>>>=l&7,l-=l&7;l<32;){if(r===0)break e;r--,s+=a[i++]<>>16^65535)){n.msg="invalid stored block lengths",e.mode=N;break}if(e.length=s&65535,s=0,l=0,e.mode=we,t===ne)break e;case we:e.mode=Ge;case Ge:if(f=e.length,f){if(f>r&&(f=r),f>u&&(f=u),f===0)break e;o.set(a.subarray(i,i+f),c),r-=f,i+=f,u-=f,c+=f,e.length-=f;break}e.mode=z;break;case He:for(;l<14;){if(r===0)break e;r--,s+=a[i++]<>>=5,l-=5,e.ndist=(s&31)+1,s>>>=5,l-=5,e.ncode=(s&15)+4,s>>>=4,l-=4,e.nlen>286||e.ndist>30){n.msg="too many length or distance symbols",e.mode=N;break}e.have=0,e.mode=Ke;case Ke:for(;e.have>>=3,l-=3}for(;e.have<19;)e.lens[V[e.have++]]=0;if(e.lencode=e.lendyn,e.lenbits=7,_={bits:e.lenbits},S=X(un,e.lens,0,19,e.lencode,0,e.work,_),e.lenbits=_.bits,S){n.msg="invalid code lengths set",e.mode=N;break}e.have=0,e.mode=Je;case Je:for(;e.have>>24,I=v>>>16&255,k=v&65535,!(m<=l);){if(r===0)break e;r--,s+=a[i++]<>>=m,l-=m,e.lens[e.have++]=k;else{if(k===16){for(E=m+2;l>>=m,l-=m,e.have===0){n.msg="invalid bit length repeat",e.mode=N;break}b=e.lens[e.have-1],f=3+(s&3),s>>>=2,l-=2}else if(k===17){for(E=m+3;l>>=m,l-=m,b=0,f=3+(s&7),s>>>=3,l-=3}else{for(E=m+7;l>>=m,l-=m,b=0,f=11+(s&127),s>>>=7,l-=7}if(e.have+f>e.nlen+e.ndist){n.msg="invalid bit length repeat",e.mode=N;break}for(;f--;)e.lens[e.have++]=b}}if(e.mode===N)break;if(e.lens[256]===0){n.msg="invalid code -- missing end-of-block",e.mode=N;break}if(e.lenbits=9,_={bits:e.lenbits},S=X(Te,e.lens,0,e.nlen,e.lencode,0,e.work,_),e.lenbits=_.bits,S){n.msg="invalid literal/lengths set",e.mode=N;break}if(e.distbits=6,e.distcode=e.distdyn,_={bits:e.distbits},S=X(Re,e.lens,e.nlen,e.ndist,e.distcode,0,e.work,_),e.distbits=_.bits,S){n.msg="invalid distances set",e.mode=N;break}if(e.mode=se,t===ne)break e;case se:e.mode=re;case re:if(r>=6&&u>=258){n.next_out=c,n.avail_out=u,n.next_in=i,n.avail_in=r,e.hold=s,e.bits=l,rn(n,w),c=n.next_out,o=n.output,u=n.avail_out,i=n.next_in,a=n.input,r=n.avail_in,s=e.hold,l=e.bits,e.mode===z&&(e.back=-1);break}for(e.back=0;v=e.lencode[s&(1<>>24,I=v>>>16&255,k=v&65535,!(m<=l);){if(r===0)break e;r--,s+=a[i++]<>h)],m=v>>>24,I=v>>>16&255,k=v&65535,!(h+m<=l);){if(r===0)break e;r--,s+=a[i++]<>>=h,l-=h,e.back+=h}if(s>>>=m,l-=m,e.back+=m,e.length=k,I===0){e.mode=et;break}if(I&32){e.back=-1,e.mode=z;break}if(I&64){n.msg="invalid literal/length code",e.mode=N;break}e.extra=I&15,e.mode=We;case We:if(e.extra){for(E=e.extra;l>>=e.extra,l-=e.extra,e.back+=e.extra}e.was=e.length,e.mode=Xe;case Xe:for(;v=e.distcode[s&(1<>>24,I=v>>>16&255,k=v&65535,!(m<=l);){if(r===0)break e;r--,s+=a[i++]<>h)],m=v>>>24,I=v>>>16&255,k=v&65535,!(h+m<=l);){if(r===0)break e;r--,s+=a[i++]<>>=h,l-=h,e.back+=h}if(s>>>=m,l-=m,e.back+=m,I&64){n.msg="invalid distance code",e.mode=N;break}e.offset=k,e.extra=I&15,e.mode=qe;case qe:if(e.extra){for(E=e.extra;l>>=e.extra,l-=e.extra,e.back+=e.extra}if(e.offset>e.dmax){n.msg="invalid distance too far back",e.mode=N;break}e.mode=Qe;case Qe:if(u===0)break e;if(f=w-u,e.offset>f){if(f=e.offset-f,f>e.whave&&e.sane){n.msg="invalid distance too far back",e.mode=N;break}f>e.wnext?(f-=e.wnext,p=e.wsize-f):p=e.wnext-f,f>e.length&&(f=e.length),T=e.window}else T=o,p=c-e.offset,f=e.length;f>u&&(f=u),u-=f,e.length-=f;do o[c++]=T[p++];while(--f);e.length===0&&(e.mode=re);break;case et:if(u===0)break e;o[c++]=e.length,u--,e.mode=re;break;case be:if(e.wrap){for(;l<32;){if(r===0)break e;r--,s|=a[i++]<{if(j(n))return O;let t=n.state;return t.window&&(t.window=null),n.state=null,Z},En=(n,t)=>{if(j(n))return O;const e=n.state;return(e.wrap&2)===0?O:(e.head=t,t.done=!1,Z)},Sn=(n,t)=>{const e=t.length;let a,o,i;return j(n)||(a=n.state,a.wrap!==0&&a.mode!==ie)?O:a.mode===ie&&(o=1,o=ce(o,t,e,0),o!==a.check)?Ce:(i=ut(n,t,e,e),i?(a.mode=at,Be):(a.havedict=1,Z))};var In=ot,An=lt,Nn=rt,Dn=kn,Tn=ct,Rn=xn,Mn=yn,Cn=En,Bn=Sn,On="pako inflate (from Nodeca project)",$={inflateReset:In,inflateReset2:An,inflateResetKeep:Nn,inflateInit:Dn,inflateInit2:Tn,inflate:Rn,inflateEnd:Mn,inflateGetHeader:Cn,inflateSetDictionary:Bn,inflateInfo:On};function Ln(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}var Un=Ln;const ht=Object.prototype.toString,{Z_NO_FLUSH:zn,Z_FINISH:$n,Z_OK:q,Z_STREAM_END:_e,Z_NEED_DICT:me,Z_STREAM_ERROR:Vn,Z_DATA_ERROR:dt,Z_MEM_ERROR:Pn}=ye;function oe(n){this.options=Ee.assign({chunkSize:1024*64,windowBits:15,to:""},n||{});const t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,t.windowBits===0&&(t.windowBits=-15)),t.windowBits>=0&&t.windowBits<16&&!(n&&n.windowBits)&&(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&(t.windowBits&15)===0&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new an,this.strm.avail_out=0;let e=$.inflateInit2(this.strm,t.windowBits);if(e!==q)throw new Error(fe[e]);if(this.header=new Un,$.inflateGetHeader(this.strm,this.header),t.dictionary&&(typeof t.dictionary=="string"?t.dictionary=ue.string2buf(t.dictionary):ht.call(t.dictionary)==="[object ArrayBuffer]"&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw&&(e=$.inflateSetDictionary(this.strm,t.dictionary),e!==q)))throw new Error(fe[e])}oe.prototype.push=function(n,t){const e=this.strm,a=this.options.chunkSize,o=this.options.dictionary;let i,c,r;if(this.ended)return!1;for(t===~~t?c=t:c=t===!0?$n:zn,ht.call(n)==="[object ArrayBuffer]"?e.input=new Uint8Array(n):e.input=n,e.next_in=0,e.avail_in=e.input.length;;){for(e.avail_out===0&&(e.output=new Uint8Array(a),e.next_out=0,e.avail_out=a),i=$.inflate(e,c),i===me&&o&&(i=$.inflateSetDictionary(e,o),i===q?i=$.inflate(e,c):i===dt&&(i=me));e.avail_in>0&&i===_e&&e.state.wrap>0&&n[e.next_in]!==0;)$.inflateReset(e),i=$.inflate(e,c);switch(i){case Vn:case dt:case me:case Pn:return this.onEnd(i),this.ended=!0,!1}if(r=e.avail_out,e.next_out&&(e.avail_out===0||i===_e))if(this.options.to==="string"){let u=ue.utf8border(e.output,e.next_out),s=e.next_out-u,l=ue.buf2string(e.output,u);e.next_out=s,e.avail_out=a-s,s&&e.output.set(e.output.subarray(u,u+s),0),this.onData(l)}else this.onData(e.output.length===e.next_out?e.output:e.output.subarray(0,e.next_out));if(!(i===q&&r===0)){if(i===_e)return i=$.inflateEnd(this.strm),this.onEnd(i),this.ended=!0,!0;if(e.avail_in===0)break}}return!0},oe.prototype.onData=function(n){this.chunks.push(n)},oe.prototype.onEnd=function(n){n===q&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=Ee.flattenChunks(this.chunks)),this.chunks=[],this.err=n,this.msg=this.strm.msg};function Fn(n,t){const e=new oe(t);if(e.push(n),e.err)throw e.msg||fe[e.err];return e.result}var Zn=Fn,jn={ungzip:Zn};const{ungzip:Yn}=jn;var Gn=Yn;function Hn(){return typeof CompressionStream<"u"&&typeof DecompressionStream<"u"}async function Kn(n){if(Hn())try{const t=new DecompressionStream("gzip"),e=t.writable.getWriter(),a=t.readable.getReader();e.write(n),e.close();const o=[];let i=0;for(;;){const{done:u,value:s}=await a.read();if(u)break;o.push(s),i+=s.length}const c=new Uint8Array(i);let r=0;for(const u of o)c.set(u,r),r+=u.length;return c}catch(t){console.warn("DecompressionStream failed, falling back to pako:",t)}return Gn(n)}function Jn(n){return n.length>=2&&n[0]===31&&n[1]===139}async function Wn(n){return(await Kn(new Uint8Array(n))).buffer}let Y={},wt={},bt={},pt={};const Xn="1.21.0.03";async function gt(){try{const[n,t,e,a]=await Promise.all([fetch("/data/blocksJ2B.json"),fetch("/data/bedsJ2B.json"),fetch("/data/skullJ2B.json"),fetch("/data/blockstates.json")]);Y=await n.json(),wt=await t.json(),bt=await e.json(),pt=await a.json()}catch(n){throw console.error("Failed to load mapping data:",n),new Error("Failed to load block mapping data")}}function qn(n){const t=n.split(".").map(Number);let e=0;for(let a=0;a`${c}=${e[c]}`);return`${t}[${i.join(",")}]`}function mt(n,t="bedrock"){const e=n.indexOf("["),a=e>=0?n.substring(0,e):n;let o=[];if(e>=0){const c=n.substring(e+1,n.length-1);o=c?c.split(","):[]}const i={};for(const c of o){const[r,u]=c.split("=");r&&u!==void 0&&(i[r]=u)}if(t==="java"){const c=new Map,r=new Map;for(const[u,s]of Object.entries(i))r.set(u,M(s));return c.set("Name",M(a)),r.size>0&&c.set("Properties",A(r)),A(c)}else{const c=new Map,r=new Map;for(const[u,s]of Object.entries(i)){const l=pt[u];if(l){const d=l.values,w=l.type;if(w==="bool")r.set(u,D(s==="true"?1:0));else if(w==="int"){const f=parseInt(s,10);d.includes(f)&&r.set(u,C(f))}else w==="string"&&d.includes(s)&&r.set(u,M(s))}}return c.set("name",M(a)),c.set("states",A(r)),c.set("version",C(qn(Xn))),A(c)}}function Qn(n){return n.map(t=>{const e=_t(t);let a=Y[e];if(!a){const o=e.split("[")[0];a=Y[`${o}[]`]||Y[o]}return a||(console.warn(`No mapping found for ${e}, defaulting to air`),a="minecraft:air[]"),mt(a,"bedrock")})}function ea(n){return wt[n]??null}function ta(n){return bt[n]??null}function na(n){const t=n.value;if(t.has("Properties")){const e=t.get("Properties");if(e.value.has("waterlogged"))return e.value.get("waterlogged").value==="true"}return!1}function aa(n){return n.split("[")[0]}let ke={};function ia(n){return n.map(t=>{const e=_t(t),a=aa(e);let o;if(ke[e])o=ke[e];else for(const[i,c]of Object.entries(ke))if(i.includes("*")&&new RegExp("^"+i.replace(/\*/g,".*")+"$").test(e)){o=c;break}return o||(o=Y[e],o||(o=Y[`${a}[]`]||Y[a])),o||(console.warn(`No mapping found for ${e}, defaulting to air`),o="minecraft:air[]"),mt(o,"bedrock")})}function sa(n){const t=[];for(const e of n.value){const a=new Map,o=e.value;let i=1;o.has("count")?i=o.get("count").value:o.has("Count")&&(i=o.get("Count").value);let c=0;o.has("Slot")&&(c=o.get("Slot").value);let r="minecraft:air";o.has("id")&&(r=o.get("id").value),a.set("Count",D(i)),a.set("Damage",B(0)),a.set("Name",M(r)),a.set("Slot",D(c)),a.set("WasPickedUp",D(0)),t.push(A(a))}return t}function ra(n,t){const e=n.value,a=e.get("state").value,i=t[a].value;if(!i.has("Name"))return null;const c=i.get("Name").value,r=ea(c);if(r===null)return null;const s=e.get("pos").value,l=new Map,d=new Map;return d.set("id",M("Bed")),d.set("isMovable",D(1)),d.set("x",s[0]),d.set("y",s[1]),d.set("z",s[2]),d.set("color",D(r)),l.set("block_entity_data",A(d)),A(l)}function J(n,t){const e=n.value;if(!e.has("nbt"))return null;const o=e.get("nbt").value;if(!o.has("Items"))return null;const i=o.get("Items"),r=e.get("pos").value,u=new Map,s=new Map;if(s.set("id",M(t)),s.set("isMovable",D(1)),s.set("x",r[0]),s.set("y",r[1]),s.set("z",r[2]),(t==="Chest"||t==="Barrel")&&o.has("CustomName")){const d=o.get("CustomName");s.set("CustomName",M(d.value))}const l=sa(i);if(l.length>0&&s.set("Items",L(l,10)),t==="Furnace"||t==="BlastFurnace"||t==="Smoker"){if(o.has("BurnTime")){const d=o.get("BurnTime");s.set("BurnTime",B(d.value))}if(o.has("CookTime")){const d=o.get("CookTime");s.set("CookTime",B(d.value))}if(o.has("CookTimeTotal")){const d=o.get("CookTimeTotal");s.set("CookTimeTotal",B(d.value))}}if(t==="BrewingStand"&&o.has("BrewTime")){const d=o.get("BrewTime");s.set("BrewTime",B(d.value))}return u.set("block_entity_data",A(s)),A(u)}function oa(n){const t=n.value;if(!t.has("nbt"))return null;const a=t.get("nbt").value,i=t.get("pos").value,c=new Map,r=new Map;if(r.set("id",M("Comparator")),r.set("isMovable",D(1)),r.set("x",i[0]),r.set("y",i[1]),r.set("z",i[2]),a.has("OutputSignal")){const u=a.get("OutputSignal");r.set("OutputSignal",C(u.value))}return c.set("block_entity_data",A(r)),A(c)}function la(n){const a=n.value.get("pos").value,o=new Map,i=new Map;return i.set("id",M("FlowerPot")),i.set("isMovable",D(1)),i.set("x",a[0]),i.set("y",a[1]),i.set("z",a[2]),o.set("block_entity_data",A(i)),A(o)}function ca(n){const t=n.value;if(!t.has("nbt"))return null;const a=t.get("nbt").value,i=t.get("pos").value,c=new Map,r=new Map;if(r.set("id",M("Banner")),r.set("isMovable",D(1)),r.set("x",i[0]),r.set("y",i[1]),r.set("z",i[2]),a.has("Patterns")){const u=a.get("Patterns"),s=[];for(const l of u.value){const d=l.value,w=new Map;if(d.has("Color")){const f=d.get("Color");w.set("Color",C(f.value))}if(d.has("Pattern")){const f=d.get("Pattern");w.set("Pattern",M(f.value))}s.push(A(w))}s.length>0&&r.set("Patterns",L(s,10))}return c.set("block_entity_data",A(r)),A(c)}function fa(n,t){const e=n.value,a=e.get("state").value,i=t[a].value;if(!i.has("Name"))return null;const c=i.get("Name").value,r=ta(c);if(r===null)return null;const s=e.get("pos").value,l=new Map,d=new Map;if(d.set("id",M("Skull")),d.set("isMovable",D(1)),d.set("x",s[0]),d.set("y",s[1]),d.set("z",s[2]),d.set("SkullType",D(r)),i.has("Properties")){const f=i.get("Properties").value;if(f.has("rotation")){const p=f.get("rotation");d.set("Rot",D(parseInt(p.value,10)))}}if(e.has("nbt")){const f=e.get("nbt").value;if(f.has("SkullOwner")){const p=f.get("SkullOwner");if(p.value.has("Name")){const T=p.value.get("Name");d.set("CustomName",M(T.value))}}}return l.set("block_entity_data",A(d)),A(l)}function ua(n){const t=n.value;if(!t.has("nbt"))return null;const a=t.get("nbt").value,i=t.get("pos").value,c=new Map,r=new Map;if(r.set("id",M("MobSpawner")),r.set("isMovable",D(1)),r.set("x",i[0]),r.set("y",i[1]),r.set("z",i[2]),a.has("SpawnData")){const u=a.get("SpawnData");if(u.value.has("entity")){const s=u.value.get("entity");if(s.value.has("id")){const l=s.value.get("id");r.set("EntityIdentifier",M(l.value))}}}if(a.has("Delay")){const u=a.get("Delay");r.set("Delay",B(u.value))}if(a.has("MinSpawnDelay")){const u=a.get("MinSpawnDelay");r.set("MinSpawnDelay",B(u.value))}if(a.has("MaxSpawnDelay")){const u=a.get("MaxSpawnDelay");r.set("MaxSpawnDelay",B(u.value))}if(a.has("SpawnCount")){const u=a.get("SpawnCount");r.set("SpawnCount",B(u.value))}if(a.has("MaxNearbyEntities")){const u=a.get("MaxNearbyEntities");r.set("MaxNearbyEntities",B(u.value))}if(a.has("RequiredPlayerRange")){const u=a.get("RequiredPlayerRange");r.set("RequiredPlayerRange",B(u.value))}if(a.has("SpawnRange")){const u=a.get("SpawnRange");r.set("SpawnRange",B(u.value))}return c.set("block_entity_data",A(r)),A(c)}function ha(n){const t=n.value;if(!t.has("nbt"))return null;const a=t.get("nbt").value,i=t.get("pos").value,c=new Map,r=new Map;if(r.set("id",M("StructureBlock")),r.set("isMovable",D(1)),r.set("x",i[0]),r.set("y",i[1]),r.set("z",i[2]),a.has("name")){const u=a.get("name");r.set("structureName",M(u.value))}if(a.has("metadata")){const u=a.get("metadata");r.set("dataField",M(u.value))}if(a.has("mode")){const u=a.get("mode"),s={SAVE:"Save",LOAD:"Load",CORNER:"Corner",DATA:"Data"};r.set("structureBlockType",M(s[u.value]||"Data"))}if(a.has("ignoreEntities")){const u=a.get("ignoreEntities");r.set("ignoreEntities",D(u.value))}if(a.has("showboundingbox")){const u=a.get("showboundingbox");r.set("showBoundingBox",D(u.value))}return c.set("block_entity_data",A(r)),A(c)}function kt(n,t){const e={};for(const a of n){const o=a.value;if(!o.has("nbt")&&!o.has("state"))continue;const i=o.get("state").value,c=t[i];if(!c||!c.value.has("Name"))continue;const u=c.value.get("Name").value.split("[")[0];let s=null;switch(u){case"minecraft:white_bed":case"minecraft:orange_bed":case"minecraft:magenta_bed":case"minecraft:light_blue_bed":case"minecraft:yellow_bed":case"minecraft:lime_bed":case"minecraft:pink_bed":case"minecraft:gray_bed":case"minecraft:light_gray_bed":case"minecraft:cyan_bed":case"minecraft:purple_bed":case"minecraft:blue_bed":case"minecraft:brown_bed":case"minecraft:green_bed":case"minecraft:red_bed":case"minecraft:black_bed":s=ra(a,t);break;case"minecraft:chest":case"minecraft:trapped_chest":s=J(a,"Chest");break;case"minecraft:barrel":s=J(a,"Barrel");break;case"minecraft:furnace":s=J(a,"Furnace");break;case"minecraft:blast_furnace":s=J(a,"BlastFurnace");break;case"minecraft:smoker":s=J(a,"Smoker");break;case"minecraft:brewing_stand":s=J(a,"BrewingStand");break;case"minecraft:comparator":s=oa(a);break;case"minecraft:flower_pot":case"minecraft:potted_oak_sapling":case"minecraft:potted_spruce_sapling":case"minecraft:potted_birch_sapling":case"minecraft:potted_jungle_sapling":case"minecraft:potted_acacia_sapling":case"minecraft:potted_dark_oak_sapling":s=la(a);break;case"minecraft:white_banner":case"minecraft:orange_banner":case"minecraft:magenta_banner":case"minecraft:light_blue_banner":case"minecraft:yellow_banner":case"minecraft:lime_banner":case"minecraft:pink_banner":case"minecraft:gray_banner":case"minecraft:light_gray_banner":case"minecraft:cyan_banner":case"minecraft:purple_banner":case"minecraft:blue_banner":case"minecraft:brown_banner":case"minecraft:green_banner":case"minecraft:red_banner":case"minecraft:black_banner":case"minecraft:white_wall_banner":case"minecraft:orange_wall_banner":case"minecraft:magenta_wall_banner":case"minecraft:light_blue_wall_banner":case"minecraft:yellow_wall_banner":case"minecraft:lime_wall_banner":case"minecraft:pink_wall_banner":case"minecraft:gray_wall_banner":case"minecraft:light_gray_wall_banner":case"minecraft:cyan_wall_banner":case"minecraft:purple_wall_banner":case"minecraft:blue_wall_banner":case"minecraft:brown_wall_banner":case"minecraft:green_wall_banner":case"minecraft:red_wall_banner":case"minecraft:black_wall_banner":s=ca(a);break;case"minecraft:skeleton_skull":case"minecraft:skeleton_wall_skull":case"minecraft:wither_skeleton_skull":case"minecraft:wither_skeleton_wall_skull":case"minecraft:zombie_head":case"minecraft:zombie_wall_head":case"minecraft:player_head":case"minecraft:player_wall_head":case"minecraft:creeper_head":case"minecraft:creeper_wall_head":case"minecraft:dragon_head":case"minecraft:dragon_wall_head":s=fa(a,t);break;case"minecraft:spawner":s=ua(a);break;case"minecraft:structure_block":s=ha(a);break}if(s){const d=o.get("pos").value,w=`${d[0].value},${d[1].value},${d[2].value}`;e[w]=s}}return e}const da={version:"1.21.0.03",enableWaterlogged:!0,customMappings:{},preserveStructureOrigin:!1};let vt=!1;async function wa(){vt||(await gt(),vt=!0)}function ba(n){const t=n.value;if(!t.has("blocks"))throw new Error('Missing "blocks" tag in Java structure');if(!t.has("palette"))throw new Error('Missing "palette" tag in Java structure');if(!t.has("size"))throw new Error('Missing "size" tag in Java structure');return{blocks:t.get("blocks"),palette:t.get("palette"),size:t.get("size"),entities:t.get("entities")||L([],g.COMPOUND)}}function pa(n,t,e,a,o){return n*t*e+t*a+o}async function ga(n,t){const e=n.blocks.value,a=n.palette.value,o=n.size.value,i=o[0].value,c=o[1].value,r=o[2].value,u=i*c*r;let s;t.customMappings&&Object.keys(t.customMappings).length>0?s=ia(a):s=Qn(a);const l=[],d=[];for(let x=0;x 1); + + // 检测桌面设备 + const isDesktop = !isMobile && !isTablet; + + // 添加设备类到body + document.body.className = ''; + if (isMobile) { + document.body.classList.add('device-mobile'); + } else if (isTablet) { + document.body.classList.add('device-tablet'); + } else { + document.body.classList.add('device-desktop'); + } +} + +// 页面加载时检测设备 +detectDevice(); + +// 窗口大小改变时重新检测设备 +window.addEventListener('resize', detectDevice); + +// 页面加载完成后执行 +document.addEventListener('DOMContentLoaded', function() { + // 获取所有需要操作的DOM元素 + const dropZone = document.getElementById('dropZone'); // 拖放区域 + const fileInput = document.getElementById('fileInput'); // 文件输入框 + const selectFilesBtn = document.getElementById('selectFilesBtn'); // 选择文件按钮 + const fileList = document.getElementById('fileList'); // 文件列表容器 + const processBtn = document.getElementById('processBtn'); // 处理按钮 + const downloadBtn = document.getElementById('downloadBtn'); // 下载按钮 + const downloadArea = document.getElementById('downloadArea'); // 下载区域 + const progressArea = document.getElementById('progressArea'); // 进度区域 + const progressFill = document.getElementById('progressFill'); // 进度条填充 + const progressText = document.getElementById('progressText'); // 进度文本 + const statusMessage = document.getElementById('statusMessage'); // 状态消息 + const configCard = document.querySelector('.config-card'); // 配置卡片 + + // 初始化工具类 + const fileProcessor = new FileProcessor(); + const progressManager = new ProgressManager(progressFill, progressText, statusMessage); + + // 绑定事件监听器 + selectFilesBtn.addEventListener('click', () => fileInput.click()); // 点击按钮触发文件选择 + fileInput.addEventListener('change', handleFileSelect); // 文件选择改变时处理 + + // 为拖放区域绑定拖拽事件,阻止默认行为 + ['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => { + dropZone.addEventListener(eventName, preventDefaults, false); + }); + + // 添加拖拽视觉反馈事件 + dropZone.addEventListener('dragenter', () => { + dropZone.classList.add('drag-over'); + }); + + dropZone.addEventListener('dragover', () => { + dropZone.classList.add('drag-over'); + }); + + dropZone.addEventListener('dragleave', () => { + dropZone.classList.remove('drag-over'); + }); + + dropZone.addEventListener('drop', () => { + dropZone.classList.remove('drag-over'); + }); + + if (configCard) { + setTimeout(() => configCard.classList.add('animated'), 700); + } + + // 阻止拖拽事件的默认行为 + function preventDefaults(e) { + e.preventDefault(); // 阻止默认的拖拽行为 + e.stopPropagation(); // 阻止事件冒泡 + } + + // 监听拖放事件 + dropZone.addEventListener('drop', handleDrop, false); + + // 处理拖放的文件 + function handleDrop(e) { + const files = e.dataTransfer.files; // 获取拖放的文件列表 + handleFiles(files); // 调用文件处理函数 + this.value ="" + + } + + // 处理通过文件选择对话框选择的文件 + function handleFileSelect(e) { + const files = e.target.files; // 获取选择的文件列表 + + handleFiles(files); // 调用文件处理函数 + this.value ="" + } + + // 格式化文件大小显示 + function formatFileSize(bytes) { + if (bytes === 0) return '0 Bytes'; + const k = 1024; // 单位换算基数 + const sizes = ['Bytes', 'KB', 'MB', 'GB']; // 单位数组 + const i = Math.floor(Math.log(bytes) / Math.log(k)); // 计算单位级别 + // 返回格式化后的大小字符串 + return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i]; + } + + // 统一处理文件(去重并显示) + async function handleFiles(files) { + for (let i = 0; i < files.length; i++) { + const file = files[i]; + try { + const added = await fileProcessor.addFile(file); + if (added) { + renderFileItem(file); // 渲染文件显示项 + progressManager.showStatus(t('STATUS_FILE_ADDED', {name: file.name}), 'green'); + } else { + progressManager.showStatus(t('STATUS_FILE_EXISTS', {name: file.name}), 'orange'); + } + } catch (error) { + progressManager.showStatus(t('STATUS_FILE_ERROR', {name: file.name, error: error.message}), 'red'); + } + } + } + + // 渲染单个文件项到列表中 + function renderFileItem(file) { + // 计算文件哈希值用于删除操作 + computeFileHash(file).then(hash => { + const fileItem = document.createElement('div'); + fileItem.className = 'file-item'; + + // 检查文件类型并添加相应标识 + const fileName = file.name.toLowerCase(); + let fileTypeBadge = ''; + if (fileName.endsWith('.mcstructure')) { + fileTypeBadge = 'MCSTRUCTURE'; + } else if (fileName.endsWith('.nbt')) { + fileTypeBadge = 'NBT→MCSTRUCTURE'; + } else if (fileName.endsWith('.litematic')) { + fileTypeBadge = 'LITEMATIC→MCSTRUCTURE'; + } + + fileItem.innerHTML = ` +
+ ${file.name} + ${fileTypeBadge} + ${formatFileSize(file.size)} +
+ + `; + fileList.appendChild(fileItem); + }); + } + + // 全局函数:删除指定文件(通过哈希值匹配) + window.removeFile = function(fileHash, button) { + // 从文件处理器中移除文件 + fileProcessor.uploadedFiles = fileProcessor.uploadedFiles.filter(f => f.hash !== fileHash); + fileProcessor.fileHashes.delete(fileHash); + + const fileItem = button.closest('.file-item'); + if (fileItem) { + fileItem.classList.add('removing'); + fileItem.addEventListener('animationend', function handler() { + fileItem.removeEventListener('animationend', handler); + fileItem.remove(); + }); + } + + progressManager.showStatus(t('STATUS_FILE_DELETED'), 'green'); + }; + + function toggleSection(section, show) { + if (!section) return; + section.classList.remove('screen-enter', 'screen-exit'); + if (show) { + section.style.display = 'block'; + requestAnimationFrame(() => section.classList.add('screen-enter')); + } else { + section.classList.add('screen-exit'); + section.addEventListener('animationend', function handler(event) { + if (event.animationName !== 'screenExit') return; + section.removeEventListener('animationend', handler); + section.style.display = 'none'; + }, { once: true }); + } + } + + // 绑定处理按钮点击事件 + processBtn.addEventListener('click', processFiles); + + // 主处理函数:开始文件处理流程 + async function processFiles() { + // 检查是否有文件需要处理 + if (fileProcessor.getFileCount() === 0) { + progressManager.showStatus(t('STATUS_NO_FILES'), 'red'); + return; + } + + // 重置状态 + toggleSection(downloadArea, false); + progressManager.reset(); + + // 显示进度区域 + toggleSection(progressArea, true); + + try { + await generateZipFile(); + } catch (error) { + progressManager.showStatus(error.message, 'red'); + } + } + + // 处理完成后的回调 + function completeProcessing() { + toggleSection(progressArea, false); + setTimeout(function() {toggleSection(downloadArea, true);},500) + + // 绑定下载按钮事件 + downloadBtn.onclick = function() { + downloadZipFile(); + }; + } + + // 生成ZIP压缩文件 + async function generateZipFile() { + progressManager.showStatus(t('STATUS_GENERATING_ZIP'), 'green'); + + try { + const projectName = document.getElementById('projectName').value || t('DEFAULT_PROJECT_NAME'); + + // 使用ZipGenerator类生成ZIP文件 + const zipGenerator = new ZipGenerator(fileProcessor); + const generatedZipBlob = await zipGenerator.generate(projectName); + + progressManager.update(100); + progressManager.showStatus(t('STATUS_COMPLETE_DONE'), 'green'); + progressText.textContent = t('PROGRESS_COMPLETE'); + + // 存储生成的ZIP文件 + fileProcessor.generatedZipBlob = generatedZipBlob; + + completeProcessing(); + } catch (error) { + throw new Error(t('ERROR_ZIP_ERROR', {error: error.message})); + } + } + + // 下载ZIP文件 + function downloadZipFile() { + // 检查是否有可下载的文件 + if (!fileProcessor.generatedZipBlob) { + progressManager.showStatus(t('STATUS_NO_DOWNLOAD'), 'red'); + return; + } + + try { + // 创建带有正确MIME类型的Blob + const projectName = document.getElementById('projectName').value || t('DEFAULT_PROJECT_NAME'); + const fileName = `${projectName}.mcpack`; + + // 使用 application/octet-stream 确保浏览器不会修改文件名 + const blob = new Blob([fileProcessor.generatedZipBlob], { + type: 'application/octet-stream' + }); + + // 创建下载链接 + const url = URL.createObjectURL(blob); + const a = document.createElement('a'); + a.href = url; + a.download = fileName; + a.style.display = 'none'; + document.body.appendChild(a); + + // 触发点击 + a.click(); + + // 清理资源 + setTimeout(() => { + document.body.removeChild(a); + URL.revokeObjectURL(url); + }, 100); + + progressManager.showStatus(t('STATUS_DOWNLOAD_STARTED'), 'green'); + } catch (error) { + // 处理下载错误 + progressManager.showStatus(t('STATUS_DOWNLOAD_FAILED', {error: error.message}), 'red'); + } + } +}); \ No newline at end of file diff --git a/js/utils.umd.js b/js/utils.umd.js new file mode 100644 index 0000000..b2e1d7d --- /dev/null +++ b/js/utils.umd.js @@ -0,0 +1,725 @@ +/** + * 工具函数集合 - 文件压缩工具 + * @author wed15 + * @version 1.1.0 + */ + +// 国际化文本配置 +const i18n = { + zh: { + // 页面标题 + PAGE_TITLE: '投影拓展包生成器--自动,本地', + + // 状态消息 + STATUS_READY: '准备就绪', + STATUS_PROCESSING: '正在处理文件...', + STATUS_GENERATING: '正在生成压缩包...', + STATUS_COMPLETE: '压缩包已生成,可以下载了!', + STATUS_DOWNLOAD_START: '下载已开始!', + STATUS_FILE_ADDED: '文件 {name} 已添加!', + STATUS_FILE_EXISTS: '文件 {name} 已存在!', + STATUS_FILE_ERROR: '处理文件 {name} 时出错: {error}', + STATUS_FILE_DELETED: '文件已删除', + STATUS_NO_FILES: '请先添加文件!', + STATUS_GENERATING_ZIP: '正在生成压缩包...', + STATUS_COMPLETE_DONE: '处理完成!', + STATUS_NO_DOWNLOAD: '没有可下载的文件', + STATUS_DOWNLOAD_STARTED: '下载已开始', + STATUS_DOWNLOAD_FAILED: '下载失败: {error}', + STATUS_BROWSER_HINT: '建议在浏览器中打开该网站(右上角三个点哦!)', + + // 错误消息 + ERROR_NO_FILES: '没有上传任何文件', + ERROR_FILE_READ: '读取文件时出错', + ERROR_ZIP_GENERATE: '生成压缩包时出错', + ERROR_DOWNLOAD_FAIL: '下载失败', + ERROR_NO_DOWNLOAD_FILE: '没有可下载的文件,请先生成压缩包', + ERROR_INVALID_FILE_TYPE: '只支持 .mcstructure、.nbt 和 .litematic 文件', + ERROR_IMAGE_FETCH: '获取图像时出错', + ERROR_ZIP_ERROR: '生成压缩包时出错: {error}', + + // UI文本 + PROGRESS_TEXT: '处理中...', + PROGRESS_COMPLETE: '完成!', + DROP_ZONE_TEXT: '拖放文件到此处,或点击', + SELECT_FILES_BTN: '选择文件', + DOWNLOAD_BTN: '下载压缩包', + + // 页面标题和副标题 + MAIN_TITLE: '投影包生成工具', + SUB_TITLE: '无需上传 本地生成 大文件秒传 支持多文件', + NAV_DOWNLOAD: '下载汉化投影主包', + + // 上传区域 + SECTION_UPLOAD: '上传文件', + FORMAT_HINT: '支持格式:.mcstructure | .nbt | .litematic', + + // 配置区域 + SECTION_CONFIG: '配置选项', + LABEL_PROJECT_NAME: '拓展包名称:', + DEFAULT_PROJECT_NAME: '我的投影包', + BTN_PROCESS: '处理并生成投影拓展包', + + // 进度区域 + SECTION_PROGRESS: '处理进度', + + // 下载区域 + SECTION_DOWNLOAD: '下载投影拓展包', + DOWNLOAD_READY: '您的文件已准备就绪', + + // 删除按钮 + BTN_DELETE: '删除', + + // 底部 + FOOTER_SPONSOR: '赞助我们', + FOOTER_ICP: '赣ICP备2026005549号-1', + FOOTER_CDN: 'Esa分站', + + // 下载页面 + DL_PAGE_TITLE: '投影汉化主包下载中心', + DL_MAIN_TITLE: '汉化投影主包下载中心', + DL_SUB_TITLE: '选择版本下载 持续更新中', + DL_NAV_BACK: '返回投影包生成工具', + DL_SECTION_AVAILABLE: '可用版本', + DL_BTN_DOWNLOAD: '下载', + DL_STATUS_START: '开始下载: {name}', + DL_STATUS_FAILED: '下载失败: {error}', + + // 海外版专用 + OV_PAGE_TITLE: 'Construct Expansion Pack Generator', + OV_MAIN_TITLE: 'Construct Pack Generator', + OV_SUB_TITLE: '100% Offline · No Upload · Instant Convert', + OV_FOOTER_POWERED: 'Powered by Sea-of-Stars-Studio', + OV_STATUS_HINT: 'Open in browser for best experience' + }, + en: { + // Page title + PAGE_TITLE: 'Construct Expansion Pack Generator - Offline & Local', + + // Status messages + STATUS_READY: 'Ready', + STATUS_PROCESSING: 'Processing files...', + STATUS_GENERATING: 'Generating archive...', + STATUS_COMPLETE: 'Archive generated, ready to download!', + STATUS_DOWNLOAD_START: 'Download started!', + STATUS_FILE_ADDED: 'File {name} added!', + STATUS_FILE_EXISTS: 'File {name} already exists!', + STATUS_FILE_ERROR: 'Error processing {name}: {error}', + STATUS_FILE_DELETED: 'File deleted', + STATUS_NO_FILES: 'Please add files first!', + STATUS_GENERATING_ZIP: 'Generating archive...', + STATUS_COMPLETE_DONE: 'Processing complete!', + STATUS_NO_DOWNLOAD: 'No file to download', + STATUS_DOWNLOAD_STARTED: 'Download started', + STATUS_DOWNLOAD_FAILED: 'Download failed: {error}', + STATUS_BROWSER_HINT: 'Please open this site in a browser (tap the 3 dots in the top right!)', + + // Error messages + ERROR_NO_FILES: 'No files uploaded', + ERROR_FILE_READ: 'Error reading file', + ERROR_ZIP_GENERATE: 'Error generating archive', + ERROR_DOWNLOAD_FAIL: 'Download failed', + ERROR_NO_DOWNLOAD_FILE: 'No file to download, please generate archive first', + ERROR_INVALID_FILE_TYPE: 'Only .mcstructure, .nbt and .litematic files are supported', + ERROR_IMAGE_FETCH: 'Error fetching image', + ERROR_ZIP_ERROR: 'Error generating archive: {error}', + + // UI text + PROGRESS_TEXT: 'Processing...', + PROGRESS_COMPLETE: 'Complete!', + DROP_ZONE_TEXT: 'Drag files here or click to select', + SELECT_FILES_BTN: 'Select Files', + DOWNLOAD_BTN: 'Download Archive', + + // Page title and subtitle + MAIN_TITLE: 'Construct Pack Generator', + SUB_TITLE: 'No Upload · Local Processing · Fast Transfer · Multi-File', + NAV_DOWNLOAD: 'Download Chinese Projection Pack', + + // Upload section + SECTION_UPLOAD: 'Upload Files', + FORMAT_HINT: 'Supported: .mcstructure | .nbt | .litematic', + + // Config section + SECTION_CONFIG: 'Configuration', + LABEL_PROJECT_NAME: 'Pack Name:', + DEFAULT_PROJECT_NAME: 'My Construct Pack', + BTN_PROCESS: 'Process & Generate Pack', + + // Progress section + SECTION_PROGRESS: 'Processing Progress', + + // Download section + SECTION_DOWNLOAD: 'Download Your Pack', + DOWNLOAD_READY: 'Your file is ready', + + // Delete button + BTN_DELETE: 'Delete', + + // Footer + FOOTER_SPONSOR: 'Sponsor Us', + FOOTER_ICP: '赣ICP备2026005549号-1', + FOOTER_CDN: 'ESA', + + // Download page + DL_PAGE_TITLE: 'Download Construct Addon', + DL_MAIN_TITLE: 'Projection Pack Download Center', + DL_SUB_TITLE: 'Select a version to download · Updated regularly', + DL_NAV_BACK: 'Back to Pack Generator', + DL_SECTION_AVAILABLE: 'Available Versions', + DL_BTN_DOWNLOAD: 'Download', + DL_STATUS_START: 'Downloading: {name}', + DL_STATUS_FAILED: 'Download failed: {error}', + + // Overseas version + OV_PAGE_TITLE: 'Construct Expansion Pack Generator', + OV_MAIN_TITLE: 'Construct Pack Generator', + OV_SUB_TITLE: '100% Offline · No Upload · Instant Convert', + OV_FOOTER_POWERED: 'Powered by Sea-of-Stars-Studio', + OV_STATUS_HINT: 'Open in browser for best experience' + } +}; + +// 当前语言设置(可通过 switchLang 切换) +let currentLang = 'zh'; + +/** + * 带变量替换的翻译函数 + * @param {string} key - i18n 键名 + * @param {Object} vars - 替换变量,如 {name: 'test.txt'} + * @returns {string} 翻译后的文本 + */ +function t(key, vars) { + let text = i18n[currentLang][key] || key; + if (vars) { + for (const [k, v] of Object.entries(vars)) { + text = text.replace('{' + k + '}', v); + } + } + return text; +} + +/** + * 切换语言并应用到页面 + * @param {string} lang - 目标语言 'zh' 或 'en' + */ +function switchLang(lang) { + if (!i18n[lang]) return; + currentLang = lang; + // 存储到 localStorage + try { localStorage.setItem('lang', lang); } catch(e) {} + applyI18n(); +} + +/** + * 将 i18n 翻译应用到页面中所有带 data-i18n 属性的元素 + */ +function applyI18n() { + // 页面标题 + document.title = t('PAGE_TITLE'); + + // 遍历所有带 data-i18n 属性的元素 + document.querySelectorAll('[data-i18n]').forEach(el => { + const key = el.getAttribute('data-i18n'); + const val = i18n[currentLang][key]; + if (val !== undefined) { + if (el.tagName === 'INPUT' && el.type !== 'button') { + // input 元素:仅当当前值等于任一语言的默认值时才替换(避免覆盖用户输入) + const attr = el.getAttribute('data-i18n-attr') || 'value'; + const currentVal = el[attr]; + const allDefaults = Object.values(i18n).map(lang => lang[key]); + if (allDefaults.includes(currentVal) || currentVal === '') { + el[attr] = val; + } + } else { + el.textContent = val; + } + } + }); + + // 处理 data-i18n-placeholder 属性 + document.querySelectorAll('[data-i18n-placeholder]').forEach(el => { + const key = el.getAttribute('data-i18n-placeholder'); + const val = i18n[currentLang][key]; + if (val !== undefined) { + el.placeholder = val; + } + }); + + // 更新语言切换按钮文本 + const langBtn = document.getElementById('langSwitchBtn'); + if (langBtn) { + langBtn.textContent = currentLang === 'zh' ? 'EN' : '中文'; + } +} + +/** + * 初始化语言:优先系统语言,若有手动切换记录则使用手动选择,默认 zh + */ +function initLang() { + // 1. 先根据系统语言设置默认值 + try { + const sysLang = (navigator.language || navigator.userLanguage || 'zh').toLowerCase(); + currentLang = sysLang.startsWith('zh') ? 'zh' : 'en'; + } catch(e) {} + // 2. 若用户曾手动切换过语言,优先使用手动选择 + try { + const saved = localStorage.getItem('lang'); + if (saved && i18n[saved]) { + currentLang = saved; + } + } catch(e) {} +} + +/** + * UUID生成器 - 符合RFC4122标准 + * @returns {string} 生成的UUID字符串 + */ +function generateUUID() { + return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { + const r = Math.random() * 16 | 0; + const v = c === 'x' ? r : (r & 0x3 | 0x8); + return v.toString(16); + }); +} + +/** + * 计算文件MD5哈希值用于去重 + * @param {File} file - 要计算哈希的文件对象 + * @returns {Promise} 文件的MD5哈希值 + */ +function computeFileHash(file) { + return new Promise((resolve, reject) => { + const spark = new SparkMD5.ArrayBuffer(); + const reader = new FileReader(); + + reader.onload = function(e) { + spark.append(e.target.result); + resolve(spark.end()); + }; + + reader.onerror = function() { + reject(new Error(i18n[currentLang].ERROR_FILE_READ)); + }; + + reader.readAsArrayBuffer(file); + }); +} + +/** + * 验证文件类型是否为.mcstructure、.nbt 或.litematic + * @param {File} file - 要验证的文件对象 + * @returns {boolean} 是否为有效文件类型 + */ +function isValidFileType(file) { + const fileName = file.name.toLowerCase(); + return fileName.endsWith('.mcstructure') || + fileName.endsWith('.nbt') || + fileName.endsWith('.litematic'); +} + +/** + * 格式化文件大小显示 + * @param {number} bytes - 文件大小(字节) + * @returns {string} 格式化后的文件大小字符串 + */ +function formatFileSize(bytes) { + if (bytes === 0) return '0 Bytes'; + const k = 1024; // 单位换算基数 + const sizes = ['Bytes', 'KB', 'MB', 'GB']; // 单位数组 + const i = Math.floor(Math.log(bytes) / Math.log(k)); // 计算单位级别 + // 返回格式化后的大小字符串 + return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i]; +} + +/** + * 文件处理器类 + */ +class FileProcessor { + constructor() { + this.uploadedFiles = []; + this.fileHashes = new Set(); + this.generatedZipBlob = null; + this.convertedFiles = new Map(); // 存储转换后的文件数据 + } + + /** + * 添加文件到处理队列 + * @param {File} file - 要添加的文件 + * @returns {Promise} 是否成功添加 + */ + async addFile(file) { + // 验证文件类型 + if (!isValidFileType(file)) { + throw new Error(i18n[currentLang].ERROR_INVALID_FILE_TYPE); + } + + // 计算文件哈希值用于去重 + const hash = await computeFileHash(file); + if (this.fileHashes.has(hash)) { + return false; // 文件已存在,跳过 + } + + this.fileHashes.add(hash); + this.uploadedFiles.push({ + file: file, + name: file.name, + size: file.size, + hash: hash + }); + + // 如果是 nbt 或 litematic 文件,立即开始转换 + const fileName = file.name.toLowerCase(); + if (fileName.endsWith('.nbt') || fileName.endsWith('.litematic')) { + await this.convertFile(file, hash); + } + + return true; + } + + /** + * 转换 nbt 或 litematic 文件为 mcstructure + * @param {File} file - 要转换的文件 + * @param {string} hash - 文件哈希值 + */ + async convertFile(file, hash) { + try { + const fileName = file.name.toLowerCase(); + let mcstructureData = null; + let convertedFileName = ''; + + if (fileName.endsWith('.litematic')) { + // Litematic 先转 NBT,再转 Mcstructure(需要两步转换) + if (typeof window.LitematicConverter === 'undefined') { + console.warn('LitematicConverter 未加载,跳过转换'); + return; + } + + const nbtResult = await window.LitematicConverter.convert(file); + if (!nbtResult.success) { + console.error(`Litematic 转 NBT 失败:${nbtResult.error}`); + return; + } + + if (typeof window.NBTToMcStructure === 'undefined') { + console.warn('NBTToMcStructure 未加载,跳过转换'); + return; + } + + await window.NBTToMcStructure.init('./data/'); + const buffer = nbtResult.data; + const result = await window.NBTToMcStructure.convert( + buffer, + file.name.replace(/\.litematic$/i, '.nbt'), + { version: '1.21.0.03' } + ); + + if (result.success) { + mcstructureData = result.data; + convertedFileName = file.name.replace(/\.litematic$/i, '.mcstructure'); + } else { + console.error(`NBT 转 Mcstructure 失败:${result.error}`); + return; + } + } else if (fileName.endsWith('.nbt')) { + // NBT 直接转 Mcstructure + if (typeof window.NBTToMcStructure === 'undefined') { + console.warn('NBTToMcStructure 未加载,跳过转换'); + return; + } + + await window.NBTToMcStructure.init('./data/'); + const buffer = await file.arrayBuffer(); + const result = await window.NBTToMcStructure.convert( + buffer, + file.name, + { version: '1.21.0.03' } + ); + + if (result.success) { + mcstructureData = result.data; + convertedFileName = file.name.replace(/\.nbt$/i, '.mcstructure'); + } else { + console.error(`NBT 转 Mcstructure 失败:${result.error}`); + return; + } + } + + if (mcstructureData) { + this.convertedFiles.set(hash, { + data: mcstructureData, + name: convertedFileName, + originalName: file.name + }); + console.log(`文件转换成功:${file.name} → ${convertedFileName}`); + } + } catch (error) { + console.error(`转换文件 ${file.name} 失败:`, error); + } + } + + /** + * 清空所有文件 + */ + clearFiles() { + this.uploadedFiles = []; + this.fileHashes.clear(); + this.generatedZipBlob = null; + this.convertedFiles.clear(); + } + + /** + * 获取文件数量 + * @returns {number} 文件总数 + */ + getFileCount() { + return this.uploadedFiles.length; + } + + /** + * 根据哈希值删除文件 + * @param {string} hash - 文件哈希值 + * @returns {boolean} 是否成功删除 + */ + removeFileByHash(hash) { + const initialLength = this.uploadedFiles.length; + this.uploadedFiles = this.uploadedFiles.filter(f => f.hash !== hash); + this.fileHashes.delete(hash); + this.convertedFiles.delete(hash); // 同时删除转换后的文件 + return this.uploadedFiles.length < initialLength; + } +} + +/** + * ZIP生成器类 + */ +class ZipGenerator { + constructor(fileProcessor, progressManager = null) { + this.fileProcessor = fileProcessor; + this.progressManager = progressManager; + this.zip = new JSZip(); + } + + /** + * 生成完整的ZIP包 + * @param {string} projectName - 项目名称 + * @returns {Promise} 生成的ZIP文件Blob + */ + async generate(projectName) { + try { + // 更新进度:开始生成 + this.updateProgress(10); + + // 生成manifest.json配置文件 + this.generateManifest(projectName); + this.updateProgress(30); + + // 生成脚本文件 + await this.generateScripts(); + this.updateProgress(50); + + // 添加图标文件 + await this.addIcon(); + this.updateProgress(70); + + // 添加用户上传的结构文件 + await this.addStructureFiles(); + this.updateProgress(90); + + // 生成最终的ZIP文件 + const blob = await this.createZipBlob(); + this.updateProgress(100); + + return blob; + } catch (error) { + console.error('生成ZIP文件失败:', error); + throw error; + } + } + + /** + * 更新进度 + * @param {number} percentage - 进度百分比 + */ + updateProgress(percentage) { + if (this.progressManager) { + this.progressManager.update(percentage); + } + } + + /** + * 生成manifest.json配置文件 + * @param {string} projectName - 项目名称 + */ + generateManifest(projectName) { + const manifest = { + format_version: 2, + header: { + name: `投影-扩展包-${projectName}`, + description: `编号ID:${generateUUID()}扩展包模板 §l§4该扩展包需依赖于投影模组运行,作者:EnderTrekker&wed15`, + uuid: generateUUID(), + version: [1, 0, 0], + min_engine_version: [1, 21, 90] + }, + modules: [ + { + type: "data", + uuid: generateUUID(), + version: [1, 0, 0] + }, + { + type: "script", + language: "javascript", + uuid: generateUUID(), + entry: "scripts/main.js", + version: [1, 0, 0] + } + ], + dependencies: [ + { + module_name: "@minecraft/server", + version: "2.1.0" + } + ] + }; + + this.zip.file("manifest.json", JSON.stringify(manifest, null, 2)); + } + + /** + * 生成脚本文件 + */ + async generateScripts() { + const scriptsFolder = this.zip.folder("scripts"); + let fileNames = this.fileProcessor.uploadedFiles + + .map(file => file.name.replace(/\.mcstructure$/i, '')) + .map(file => JSON.stringify(file)) + + .join("或\n"); + + + + + const mainJsContent = `//@ts-ignore +import { world, system, EasingType } from "@minecraft/server"; + +const HELP_MESSAGE = \`使用打开构筑菜单,点击创建新项目,输入:\\n${fileNames}\\n点击应用放置对应项目\`; +world.afterEvents.playerSpawn.subscribe((event) => { + if (event.initialSpawn) { + system.runTimeout(() => { + event.player.sendMessage(HELP_MESSAGE); + }, 20); + } +}); +//@ts-ignore +world.beforeEvents.chatSend.subscribe((event) => { + var freeCameraRunId = Number(event.sender.getDynamicProperty("help")) || 0; + if (event.message === "提示") { + event.cancel = true; + event.sender.sendMessage(HELP_MESSAGE); + return; + } +});`; + + scriptsFolder.file("main.js", mainJsContent); + } + + /** + * 添加图标文件 + * @returns {Promise} + */ + async addIcon() { + try { + const imageUrl = `./pack_icon.png`; + const response = await fetch(imageUrl); + if (response.ok) { + const blob = await response.blob(); + this.zip.file("pack_icon.png", blob); + } + } catch (error) { + console.warn(i18n[currentLang].ERROR_IMAGE_FETCH, error); + } + } + + /** + * 添加结构文件到 ZIP(包括转换后的文件) + * @returns {Promise} + */ + async addStructureFiles() { + const structuresFolder = this.zip.folder("structures"); + const files = this.fileProcessor.uploadedFiles; + + for (const item of files) { + let arrayBuffer; + let fileName = item.name; + + // 检查是否有转换后的文件 + const converted = this.fileProcessor.convertedFiles.get(item.hash); + if (converted) { + // 使用转换后的文件 + arrayBuffer = converted.data; + fileName = converted.name; + } else { + // 使用原始文件(已经是 mcstructure 格式) + arrayBuffer = await item.file.arrayBuffer(); + } + + structuresFolder.file(fileName, arrayBuffer); + } + } + + /** + * 创建ZIP文件Blob + * @returns {Promise} ZIP文件Blob + */ + async createZipBlob() { + return await this.zip.generateAsync({ + type: "blob", + compression: "DEFLATE", + compressionOptions: { + level: 6 + } + }); + } +} + +/** + * 进度管理器 + */ +class ProgressManager { + constructor(progressBar, progressText, statusMessage) { + this.progressBar = progressBar; + this.progressText = progressText; + this.statusMessage = statusMessage; + } + + /** + * 更新进度显示 + * @param {number} percentage - 进度百分比 (0-100) + */ + update(percentage) { + this.progressBar.style.width = percentage + '%'; + this.progressText.textContent = Math.round(percentage) + '%'; + } + + /** + * 显示状态消息 + * @param {string} message - 消息内容 + * @param {string} color - 文字颜色 + */ + showStatus(message, color = 'black') { + this.statusMessage.textContent = message; + this.statusMessage.style.color = color; + console.log(message) + } + + /** + * 重置进度 + */ + reset() { + this.update(0); + this.progressText.textContent = i18n[currentLang].PROGRESS_TEXT; + this.showStatus(''); + } +} diff --git a/libs/jszip.min.js b/libs/jszip.min.js new file mode 100644 index 0000000..ff4cfd5 --- /dev/null +++ b/libs/jszip.min.js @@ -0,0 +1,13 @@ +/*! + +JSZip v3.10.1 - A JavaScript class for generating and reading zip files + + +(c) 2009-2016 Stuart Knightley +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/main/LICENSE.markdown. + +JSZip uses the library pako released under the MIT license : +https://github.com/nodeca/pako/blob/main/LICENSE +*/ + +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).JSZip=e()}}(function(){return function s(a,o,h){function u(r,e){if(!o[r]){if(!a[r]){var t="function"==typeof require&&require;if(!e&&t)return t(r,!0);if(l)return l(r,!0);var n=new Error("Cannot find module '"+r+"'");throw n.code="MODULE_NOT_FOUND",n}var i=o[r]={exports:{}};a[r][0].call(i.exports,function(e){var t=a[r][1][e];return u(t||e)},i,i.exports,s,a,o,h)}return o[r].exports}for(var l="function"==typeof require&&require,e=0;e>2,s=(3&t)<<4|r>>4,a=1>6:64,o=2>4,r=(15&i)<<4|(s=p.indexOf(e.charAt(o++)))>>2,n=(3&s)<<6|(a=p.indexOf(e.charAt(o++))),l[h++]=t,64!==s&&(l[h++]=r),64!==a&&(l[h++]=n);return l}},{"./support":30,"./utils":32}],2:[function(e,t,r){"use strict";var n=e("./external"),i=e("./stream/DataWorker"),s=e("./stream/Crc32Probe"),a=e("./stream/DataLengthProbe");function o(e,t,r,n,i){this.compressedSize=e,this.uncompressedSize=t,this.crc32=r,this.compression=n,this.compressedContent=i}o.prototype={getContentWorker:function(){var e=new i(n.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new a("data_length")),t=this;return e.on("end",function(){if(this.streamInfo.data_length!==t.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),e},getCompressedWorker:function(){return new i(n.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},o.createWorkerFrom=function(e,t,r){return e.pipe(new s).pipe(new a("uncompressedSize")).pipe(t.compressWorker(r)).pipe(new a("compressedSize")).withStreamInfo("compression",t)},t.exports=o},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(e,t,r){"use strict";var n=e("./stream/GenericWorker");r.STORE={magic:"\0\0",compressWorker:function(){return new n("STORE compression")},uncompressWorker:function(){return new n("STORE decompression")}},r.DEFLATE=e("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(e,t,r){"use strict";var n=e("./utils");var o=function(){for(var e,t=[],r=0;r<256;r++){e=r;for(var n=0;n<8;n++)e=1&e?3988292384^e>>>1:e>>>1;t[r]=e}return t}();t.exports=function(e,t){return void 0!==e&&e.length?"string"!==n.getTypeOf(e)?function(e,t,r,n){var i=o,s=n+r;e^=-1;for(var a=n;a>>8^i[255&(e^t[a])];return-1^e}(0|t,e,e.length,0):function(e,t,r,n){var i=o,s=n+r;e^=-1;for(var a=n;a>>8^i[255&(e^t.charCodeAt(a))];return-1^e}(0|t,e,e.length,0):0}},{"./utils":32}],5:[function(e,t,r){"use strict";r.base64=!1,r.binary=!1,r.dir=!1,r.createFolders=!0,r.date=null,r.compression=null,r.compressionOptions=null,r.comment=null,r.unixPermissions=null,r.dosPermissions=null},{}],6:[function(e,t,r){"use strict";var n=null;n="undefined"!=typeof Promise?Promise:e("lie"),t.exports={Promise:n}},{lie:37}],7:[function(e,t,r){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,i=e("pako"),s=e("./utils"),a=e("./stream/GenericWorker"),o=n?"uint8array":"array";function h(e,t){a.call(this,"FlateWorker/"+e),this._pako=null,this._pakoAction=e,this._pakoOptions=t,this.meta={}}r.magic="\b\0",s.inherits(h,a),h.prototype.processChunk=function(e){this.meta=e.meta,null===this._pako&&this._createPako(),this._pako.push(s.transformTo(o,e.data),!1)},h.prototype.flush=function(){a.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},h.prototype.cleanUp=function(){a.prototype.cleanUp.call(this),this._pako=null},h.prototype._createPako=function(){this._pako=new i[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var t=this;this._pako.onData=function(e){t.push({data:e,meta:t.meta})}},r.compressWorker=function(e){return new h("Deflate",e)},r.uncompressWorker=function(){return new h("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:38}],8:[function(e,t,r){"use strict";function A(e,t){var r,n="";for(r=0;r>>=8;return n}function n(e,t,r,n,i,s){var a,o,h=e.file,u=e.compression,l=s!==O.utf8encode,f=I.transformTo("string",s(h.name)),c=I.transformTo("string",O.utf8encode(h.name)),d=h.comment,p=I.transformTo("string",s(d)),m=I.transformTo("string",O.utf8encode(d)),_=c.length!==h.name.length,g=m.length!==d.length,b="",v="",y="",w=h.dir,k=h.date,x={crc32:0,compressedSize:0,uncompressedSize:0};t&&!r||(x.crc32=e.crc32,x.compressedSize=e.compressedSize,x.uncompressedSize=e.uncompressedSize);var S=0;t&&(S|=8),l||!_&&!g||(S|=2048);var z=0,C=0;w&&(z|=16),"UNIX"===i?(C=798,z|=function(e,t){var r=e;return e||(r=t?16893:33204),(65535&r)<<16}(h.unixPermissions,w)):(C=20,z|=function(e){return 63&(e||0)}(h.dosPermissions)),a=k.getUTCHours(),a<<=6,a|=k.getUTCMinutes(),a<<=5,a|=k.getUTCSeconds()/2,o=k.getUTCFullYear()-1980,o<<=4,o|=k.getUTCMonth()+1,o<<=5,o|=k.getUTCDate(),_&&(v=A(1,1)+A(B(f),4)+c,b+="up"+A(v.length,2)+v),g&&(y=A(1,1)+A(B(p),4)+m,b+="uc"+A(y.length,2)+y);var E="";return E+="\n\0",E+=A(S,2),E+=u.magic,E+=A(a,2),E+=A(o,2),E+=A(x.crc32,4),E+=A(x.compressedSize,4),E+=A(x.uncompressedSize,4),E+=A(f.length,2),E+=A(b.length,2),{fileRecord:R.LOCAL_FILE_HEADER+E+f+b,dirRecord:R.CENTRAL_FILE_HEADER+A(C,2)+E+A(p.length,2)+"\0\0\0\0"+A(z,4)+A(n,4)+f+b+p}}var I=e("../utils"),i=e("../stream/GenericWorker"),O=e("../utf8"),B=e("../crc32"),R=e("../signature");function s(e,t,r,n){i.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=t,this.zipPlatform=r,this.encodeFileName=n,this.streamFiles=e,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}I.inherits(s,i),s.prototype.push=function(e){var t=e.meta.percent||0,r=this.entriesCount,n=this._sources.length;this.accumulate?this.contentBuffer.push(e):(this.bytesWritten+=e.data.length,i.prototype.push.call(this,{data:e.data,meta:{currentFile:this.currentFile,percent:r?(t+100*(r-n-1))/r:100}}))},s.prototype.openedSource=function(e){this.currentSourceOffset=this.bytesWritten,this.currentFile=e.file.name;var t=this.streamFiles&&!e.file.dir;if(t){var r=n(e,t,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);this.push({data:r.fileRecord,meta:{percent:0}})}else this.accumulate=!0},s.prototype.closedSource=function(e){this.accumulate=!1;var t=this.streamFiles&&!e.file.dir,r=n(e,t,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(r.dirRecord),t)this.push({data:function(e){return R.DATA_DESCRIPTOR+A(e.crc32,4)+A(e.compressedSize,4)+A(e.uncompressedSize,4)}(e),meta:{percent:100}});else for(this.push({data:r.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},s.prototype.flush=function(){for(var e=this.bytesWritten,t=0;t=this.index;t--)r=(r<<8)+this.byteAt(t);return this.index+=e,r},readString:function(e){return n.transformTo("string",this.readData(e))},readData:function(){},lastIndexOfSignature:function(){},readAndCheckSignature:function(){},readDate:function(){var e=this.readInt(4);return new Date(Date.UTC(1980+(e>>25&127),(e>>21&15)-1,e>>16&31,e>>11&31,e>>5&63,(31&e)<<1))}},t.exports=i},{"../utils":32}],19:[function(e,t,r){"use strict";var n=e("./Uint8ArrayReader");function i(e){n.call(this,e)}e("../utils").inherits(i,n),i.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=i},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(e,t,r){"use strict";var n=e("./DataReader");function i(e){n.call(this,e)}e("../utils").inherits(i,n),i.prototype.byteAt=function(e){return this.data.charCodeAt(this.zero+e)},i.prototype.lastIndexOfSignature=function(e){return this.data.lastIndexOf(e)-this.zero},i.prototype.readAndCheckSignature=function(e){return e===this.readData(4)},i.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=i},{"../utils":32,"./DataReader":18}],21:[function(e,t,r){"use strict";var n=e("./ArrayReader");function i(e){n.call(this,e)}e("../utils").inherits(i,n),i.prototype.readData=function(e){if(this.checkOffset(e),0===e)return new Uint8Array(0);var t=this.data.subarray(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=i},{"../utils":32,"./ArrayReader":17}],22:[function(e,t,r){"use strict";var n=e("../utils"),i=e("../support"),s=e("./ArrayReader"),a=e("./StringReader"),o=e("./NodeBufferReader"),h=e("./Uint8ArrayReader");t.exports=function(e){var t=n.getTypeOf(e);return n.checkSupport(t),"string"!==t||i.uint8array?"nodebuffer"===t?new o(e):i.uint8array?new h(n.transformTo("uint8array",e)):new s(n.transformTo("array",e)):new a(e)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(e,t,r){"use strict";r.LOCAL_FILE_HEADER="PK",r.CENTRAL_FILE_HEADER="PK",r.CENTRAL_DIRECTORY_END="PK",r.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",r.ZIP64_CENTRAL_DIRECTORY_END="PK",r.DATA_DESCRIPTOR="PK\b"},{}],24:[function(e,t,r){"use strict";var n=e("./GenericWorker"),i=e("../utils");function s(e){n.call(this,"ConvertWorker to "+e),this.destType=e}i.inherits(s,n),s.prototype.processChunk=function(e){this.push({data:i.transformTo(this.destType,e.data),meta:e.meta})},t.exports=s},{"../utils":32,"./GenericWorker":28}],25:[function(e,t,r){"use strict";var n=e("./GenericWorker"),i=e("../crc32");function s(){n.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}e("../utils").inherits(s,n),s.prototype.processChunk=function(e){this.streamInfo.crc32=i(e.data,this.streamInfo.crc32||0),this.push(e)},t.exports=s},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(e,t,r){"use strict";var n=e("../utils"),i=e("./GenericWorker");function s(e){i.call(this,"DataLengthProbe for "+e),this.propName=e,this.withStreamInfo(e,0)}n.inherits(s,i),s.prototype.processChunk=function(e){if(e){var t=this.streamInfo[this.propName]||0;this.streamInfo[this.propName]=t+e.data.length}i.prototype.processChunk.call(this,e)},t.exports=s},{"../utils":32,"./GenericWorker":28}],27:[function(e,t,r){"use strict";var n=e("../utils"),i=e("./GenericWorker");function s(e){i.call(this,"DataWorker");var t=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,e.then(function(e){t.dataIsReady=!0,t.data=e,t.max=e&&e.length||0,t.type=n.getTypeOf(e),t.isPaused||t._tickAndRepeat()},function(e){t.error(e)})}n.inherits(s,i),s.prototype.cleanUp=function(){i.prototype.cleanUp.call(this),this.data=null},s.prototype.resume=function(){return!!i.prototype.resume.call(this)&&(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,n.delay(this._tickAndRepeat,[],this)),!0)},s.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(n.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},s.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var e=null,t=Math.min(this.max,this.index+16384);if(this.index>=this.max)return this.end();switch(this.type){case"string":e=this.data.substring(this.index,t);break;case"uint8array":e=this.data.subarray(this.index,t);break;case"array":case"nodebuffer":e=this.data.slice(this.index,t)}return this.index=t,this.push({data:e,meta:{percent:this.max?this.index/this.max*100:0}})},t.exports=s},{"../utils":32,"./GenericWorker":28}],28:[function(e,t,r){"use strict";function n(e){this.name=e||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}n.prototype={push:function(e){this.emit("data",e)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(e){this.emit("error",e)}return!0},error:function(e){return!this.isFinished&&(this.isPaused?this.generatedError=e:(this.isFinished=!0,this.emit("error",e),this.previous&&this.previous.error(e),this.cleanUp()),!0)},on:function(e,t){return this._listeners[e].push(t),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(e,t){if(this._listeners[e])for(var r=0;r "+e:e}},t.exports=n},{}],29:[function(e,t,r){"use strict";var h=e("../utils"),i=e("./ConvertWorker"),s=e("./GenericWorker"),u=e("../base64"),n=e("../support"),a=e("../external"),o=null;if(n.nodestream)try{o=e("../nodejs/NodejsStreamOutputAdapter")}catch(e){}function l(e,o){return new a.Promise(function(t,r){var n=[],i=e._internalType,s=e._outputType,a=e._mimeType;e.on("data",function(e,t){n.push(e),o&&o(t)}).on("error",function(e){n=[],r(e)}).on("end",function(){try{var e=function(e,t,r){switch(e){case"blob":return h.newBlob(h.transformTo("arraybuffer",t),r);case"base64":return u.encode(t);default:return h.transformTo(e,t)}}(s,function(e,t){var r,n=0,i=null,s=0;for(r=0;r>>6:(r<65536?t[s++]=224|r>>>12:(t[s++]=240|r>>>18,t[s++]=128|r>>>12&63),t[s++]=128|r>>>6&63),t[s++]=128|63&r);return t}(e)},s.utf8decode=function(e){return h.nodebuffer?o.transformTo("nodebuffer",e).toString("utf-8"):function(e){var t,r,n,i,s=e.length,a=new Array(2*s);for(t=r=0;t>10&1023,a[r++]=56320|1023&n)}return a.length!==r&&(a.subarray?a=a.subarray(0,r):a.length=r),o.applyFromCharCode(a)}(e=o.transformTo(h.uint8array?"uint8array":"array",e))},o.inherits(a,n),a.prototype.processChunk=function(e){var t=o.transformTo(h.uint8array?"uint8array":"array",e.data);if(this.leftOver&&this.leftOver.length){if(h.uint8array){var r=t;(t=new Uint8Array(r.length+this.leftOver.length)).set(this.leftOver,0),t.set(r,this.leftOver.length)}else t=this.leftOver.concat(t);this.leftOver=null}var n=function(e,t){var r;for((t=t||e.length)>e.length&&(t=e.length),r=t-1;0<=r&&128==(192&e[r]);)r--;return r<0?t:0===r?t:r+u[e[r]]>t?r:t}(t),i=t;n!==t.length&&(h.uint8array?(i=t.subarray(0,n),this.leftOver=t.subarray(n,t.length)):(i=t.slice(0,n),this.leftOver=t.slice(n,t.length))),this.push({data:s.utf8decode(i),meta:e.meta})},a.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:s.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},s.Utf8DecodeWorker=a,o.inherits(l,n),l.prototype.processChunk=function(e){this.push({data:s.utf8encode(e.data),meta:e.meta})},s.Utf8EncodeWorker=l},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(e,t,a){"use strict";var o=e("./support"),h=e("./base64"),r=e("./nodejsUtils"),u=e("./external");function n(e){return e}function l(e,t){for(var r=0;r>8;this.dir=!!(16&this.externalFileAttributes),0==e&&(this.dosPermissions=63&this.externalFileAttributes),3==e&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(){if(this.extraFields[1]){var e=n(this.extraFields[1].value);this.uncompressedSize===s.MAX_VALUE_32BITS&&(this.uncompressedSize=e.readInt(8)),this.compressedSize===s.MAX_VALUE_32BITS&&(this.compressedSize=e.readInt(8)),this.localHeaderOffset===s.MAX_VALUE_32BITS&&(this.localHeaderOffset=e.readInt(8)),this.diskNumberStart===s.MAX_VALUE_32BITS&&(this.diskNumberStart=e.readInt(4))}},readExtraFields:function(e){var t,r,n,i=e.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});e.index+4>>6:(r<65536?t[s++]=224|r>>>12:(t[s++]=240|r>>>18,t[s++]=128|r>>>12&63),t[s++]=128|r>>>6&63),t[s++]=128|63&r);return t},r.buf2binstring=function(e){return l(e,e.length)},r.binstring2buf=function(e){for(var t=new h.Buf8(e.length),r=0,n=t.length;r>10&1023,o[n++]=56320|1023&i)}return l(o,n)},r.utf8border=function(e,t){var r;for((t=t||e.length)>e.length&&(t=e.length),r=t-1;0<=r&&128==(192&e[r]);)r--;return r<0?t:0===r?t:r+u[e[r]]>t?r:t}},{"./common":41}],43:[function(e,t,r){"use strict";t.exports=function(e,t,r,n){for(var i=65535&e|0,s=e>>>16&65535|0,a=0;0!==r;){for(r-=a=2e3>>1:e>>>1;t[r]=e}return t}();t.exports=function(e,t,r,n){var i=o,s=n+r;e^=-1;for(var a=n;a>>8^i[255&(e^t[a])];return-1^e}},{}],46:[function(e,t,r){"use strict";var h,c=e("../utils/common"),u=e("./trees"),d=e("./adler32"),p=e("./crc32"),n=e("./messages"),l=0,f=4,m=0,_=-2,g=-1,b=4,i=2,v=8,y=9,s=286,a=30,o=19,w=2*s+1,k=15,x=3,S=258,z=S+x+1,C=42,E=113,A=1,I=2,O=3,B=4;function R(e,t){return e.msg=n[t],t}function T(e){return(e<<1)-(4e.avail_out&&(r=e.avail_out),0!==r&&(c.arraySet(e.output,t.pending_buf,t.pending_out,r,e.next_out),e.next_out+=r,t.pending_out+=r,e.total_out+=r,e.avail_out-=r,t.pending-=r,0===t.pending&&(t.pending_out=0))}function N(e,t){u._tr_flush_block(e,0<=e.block_start?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,F(e.strm)}function U(e,t){e.pending_buf[e.pending++]=t}function P(e,t){e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=255&t}function L(e,t){var r,n,i=e.max_chain_length,s=e.strstart,a=e.prev_length,o=e.nice_match,h=e.strstart>e.w_size-z?e.strstart-(e.w_size-z):0,u=e.window,l=e.w_mask,f=e.prev,c=e.strstart+S,d=u[s+a-1],p=u[s+a];e.prev_length>=e.good_match&&(i>>=2),o>e.lookahead&&(o=e.lookahead);do{if(u[(r=t)+a]===p&&u[r+a-1]===d&&u[r]===u[s]&&u[++r]===u[s+1]){s+=2,r++;do{}while(u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&sh&&0!=--i);return a<=e.lookahead?a:e.lookahead}function j(e){var t,r,n,i,s,a,o,h,u,l,f=e.w_size;do{if(i=e.window_size-e.lookahead-e.strstart,e.strstart>=f+(f-z)){for(c.arraySet(e.window,e.window,f,f,0),e.match_start-=f,e.strstart-=f,e.block_start-=f,t=r=e.hash_size;n=e.head[--t],e.head[t]=f<=n?n-f:0,--r;);for(t=r=f;n=e.prev[--t],e.prev[t]=f<=n?n-f:0,--r;);i+=f}if(0===e.strm.avail_in)break;if(a=e.strm,o=e.window,h=e.strstart+e.lookahead,u=i,l=void 0,l=a.avail_in,u=x)for(s=e.strstart-e.insert,e.ins_h=e.window[s],e.ins_h=(e.ins_h<=x&&(e.ins_h=(e.ins_h<=x)if(n=u._tr_tally(e,e.strstart-e.match_start,e.match_length-x),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=x){for(e.match_length--;e.strstart++,e.ins_h=(e.ins_h<=x&&(e.ins_h=(e.ins_h<=x&&e.match_length<=e.prev_length){for(i=e.strstart+e.lookahead-x,n=u._tr_tally(e,e.strstart-1-e.prev_match,e.prev_length-x),e.lookahead-=e.prev_length-1,e.prev_length-=2;++e.strstart<=i&&(e.ins_h=(e.ins_h<e.pending_buf_size-5&&(r=e.pending_buf_size-5);;){if(e.lookahead<=1){if(j(e),0===e.lookahead&&t===l)return A;if(0===e.lookahead)break}e.strstart+=e.lookahead,e.lookahead=0;var n=e.block_start+r;if((0===e.strstart||e.strstart>=n)&&(e.lookahead=e.strstart-n,e.strstart=n,N(e,!1),0===e.strm.avail_out))return A;if(e.strstart-e.block_start>=e.w_size-z&&(N(e,!1),0===e.strm.avail_out))return A}return e.insert=0,t===f?(N(e,!0),0===e.strm.avail_out?O:B):(e.strstart>e.block_start&&(N(e,!1),e.strm.avail_out),A)}),new M(4,4,8,4,Z),new M(4,5,16,8,Z),new M(4,6,32,32,Z),new M(4,4,16,16,W),new M(8,16,32,32,W),new M(8,16,128,128,W),new M(8,32,128,256,W),new M(32,128,258,1024,W),new M(32,258,258,4096,W)],r.deflateInit=function(e,t){return Y(e,t,v,15,8,0)},r.deflateInit2=Y,r.deflateReset=K,r.deflateResetKeep=G,r.deflateSetHeader=function(e,t){return e&&e.state?2!==e.state.wrap?_:(e.state.gzhead=t,m):_},r.deflate=function(e,t){var r,n,i,s;if(!e||!e.state||5>8&255),U(n,n.gzhead.time>>16&255),U(n,n.gzhead.time>>24&255),U(n,9===n.level?2:2<=n.strategy||n.level<2?4:0),U(n,255&n.gzhead.os),n.gzhead.extra&&n.gzhead.extra.length&&(U(n,255&n.gzhead.extra.length),U(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(e.adler=p(e.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=69):(U(n,0),U(n,0),U(n,0),U(n,0),U(n,0),U(n,9===n.level?2:2<=n.strategy||n.level<2?4:0),U(n,3),n.status=E);else{var a=v+(n.w_bits-8<<4)<<8;a|=(2<=n.strategy||n.level<2?0:n.level<6?1:6===n.level?2:3)<<6,0!==n.strstart&&(a|=32),a+=31-a%31,n.status=E,P(n,a),0!==n.strstart&&(P(n,e.adler>>>16),P(n,65535&e.adler)),e.adler=1}if(69===n.status)if(n.gzhead.extra){for(i=n.pending;n.gzindex<(65535&n.gzhead.extra.length)&&(n.pending!==n.pending_buf_size||(n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),F(e),i=n.pending,n.pending!==n.pending_buf_size));)U(n,255&n.gzhead.extra[n.gzindex]),n.gzindex++;n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),n.gzindex===n.gzhead.extra.length&&(n.gzindex=0,n.status=73)}else n.status=73;if(73===n.status)if(n.gzhead.name){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),F(e),i=n.pending,n.pending===n.pending_buf_size)){s=1;break}s=n.gzindexi&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),0===s&&(n.gzindex=0,n.status=91)}else n.status=91;if(91===n.status)if(n.gzhead.comment){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),F(e),i=n.pending,n.pending===n.pending_buf_size)){s=1;break}s=n.gzindexi&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),0===s&&(n.status=103)}else n.status=103;if(103===n.status&&(n.gzhead.hcrc?(n.pending+2>n.pending_buf_size&&F(e),n.pending+2<=n.pending_buf_size&&(U(n,255&e.adler),U(n,e.adler>>8&255),e.adler=0,n.status=E)):n.status=E),0!==n.pending){if(F(e),0===e.avail_out)return n.last_flush=-1,m}else if(0===e.avail_in&&T(t)<=T(r)&&t!==f)return R(e,-5);if(666===n.status&&0!==e.avail_in)return R(e,-5);if(0!==e.avail_in||0!==n.lookahead||t!==l&&666!==n.status){var o=2===n.strategy?function(e,t){for(var r;;){if(0===e.lookahead&&(j(e),0===e.lookahead)){if(t===l)return A;break}if(e.match_length=0,r=u._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,r&&(N(e,!1),0===e.strm.avail_out))return A}return e.insert=0,t===f?(N(e,!0),0===e.strm.avail_out?O:B):e.last_lit&&(N(e,!1),0===e.strm.avail_out)?A:I}(n,t):3===n.strategy?function(e,t){for(var r,n,i,s,a=e.window;;){if(e.lookahead<=S){if(j(e),e.lookahead<=S&&t===l)return A;if(0===e.lookahead)break}if(e.match_length=0,e.lookahead>=x&&0e.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=x?(r=u._tr_tally(e,1,e.match_length-x),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(r=u._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),r&&(N(e,!1),0===e.strm.avail_out))return A}return e.insert=0,t===f?(N(e,!0),0===e.strm.avail_out?O:B):e.last_lit&&(N(e,!1),0===e.strm.avail_out)?A:I}(n,t):h[n.level].func(n,t);if(o!==O&&o!==B||(n.status=666),o===A||o===O)return 0===e.avail_out&&(n.last_flush=-1),m;if(o===I&&(1===t?u._tr_align(n):5!==t&&(u._tr_stored_block(n,0,0,!1),3===t&&(D(n.head),0===n.lookahead&&(n.strstart=0,n.block_start=0,n.insert=0))),F(e),0===e.avail_out))return n.last_flush=-1,m}return t!==f?m:n.wrap<=0?1:(2===n.wrap?(U(n,255&e.adler),U(n,e.adler>>8&255),U(n,e.adler>>16&255),U(n,e.adler>>24&255),U(n,255&e.total_in),U(n,e.total_in>>8&255),U(n,e.total_in>>16&255),U(n,e.total_in>>24&255)):(P(n,e.adler>>>16),P(n,65535&e.adler)),F(e),0=r.w_size&&(0===s&&(D(r.head),r.strstart=0,r.block_start=0,r.insert=0),u=new c.Buf8(r.w_size),c.arraySet(u,t,l-r.w_size,r.w_size,0),t=u,l=r.w_size),a=e.avail_in,o=e.next_in,h=e.input,e.avail_in=l,e.next_in=0,e.input=t,j(r);r.lookahead>=x;){for(n=r.strstart,i=r.lookahead-(x-1);r.ins_h=(r.ins_h<>>=y=v>>>24,p-=y,0===(y=v>>>16&255))C[s++]=65535&v;else{if(!(16&y)){if(0==(64&y)){v=m[(65535&v)+(d&(1<>>=y,p-=y),p<15&&(d+=z[n++]<>>=y=v>>>24,p-=y,!(16&(y=v>>>16&255))){if(0==(64&y)){v=_[(65535&v)+(d&(1<>>=y,p-=y,(y=s-a)>3,d&=(1<<(p-=w<<3))-1,e.next_in=n,e.next_out=s,e.avail_in=n>>24&255)+(e>>>8&65280)+((65280&e)<<8)+((255&e)<<24)}function s(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new I.Buf16(320),this.work=new I.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function a(e){var t;return e&&e.state?(t=e.state,e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=1&t.wrap),t.mode=P,t.last=0,t.havedict=0,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new I.Buf32(n),t.distcode=t.distdyn=new I.Buf32(i),t.sane=1,t.back=-1,N):U}function o(e){var t;return e&&e.state?((t=e.state).wsize=0,t.whave=0,t.wnext=0,a(e)):U}function h(e,t){var r,n;return e&&e.state?(n=e.state,t<0?(r=0,t=-t):(r=1+(t>>4),t<48&&(t&=15)),t&&(t<8||15=s.wsize?(I.arraySet(s.window,t,r-s.wsize,s.wsize,0),s.wnext=0,s.whave=s.wsize):(n<(i=s.wsize-s.wnext)&&(i=n),I.arraySet(s.window,t,r-n,i,s.wnext),(n-=i)?(I.arraySet(s.window,t,r-n,n,0),s.wnext=n,s.whave=s.wsize):(s.wnext+=i,s.wnext===s.wsize&&(s.wnext=0),s.whave>>8&255,r.check=B(r.check,E,2,0),l=u=0,r.mode=2;break}if(r.flags=0,r.head&&(r.head.done=!1),!(1&r.wrap)||(((255&u)<<8)+(u>>8))%31){e.msg="incorrect header check",r.mode=30;break}if(8!=(15&u)){e.msg="unknown compression method",r.mode=30;break}if(l-=4,k=8+(15&(u>>>=4)),0===r.wbits)r.wbits=k;else if(k>r.wbits){e.msg="invalid window size",r.mode=30;break}r.dmax=1<>8&1),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=3;case 3:for(;l<32;){if(0===o)break e;o--,u+=n[s++]<>>8&255,E[2]=u>>>16&255,E[3]=u>>>24&255,r.check=B(r.check,E,4,0)),l=u=0,r.mode=4;case 4:for(;l<16;){if(0===o)break e;o--,u+=n[s++]<>8),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=5;case 5:if(1024&r.flags){for(;l<16;){if(0===o)break e;o--,u+=n[s++]<>>8&255,r.check=B(r.check,E,2,0)),l=u=0}else r.head&&(r.head.extra=null);r.mode=6;case 6:if(1024&r.flags&&(o<(d=r.length)&&(d=o),d&&(r.head&&(k=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),I.arraySet(r.head.extra,n,s,d,k)),512&r.flags&&(r.check=B(r.check,n,d,s)),o-=d,s+=d,r.length-=d),r.length))break e;r.length=0,r.mode=7;case 7:if(2048&r.flags){if(0===o)break e;for(d=0;k=n[s+d++],r.head&&k&&r.length<65536&&(r.head.name+=String.fromCharCode(k)),k&&d>9&1,r.head.done=!0),e.adler=r.check=0,r.mode=12;break;case 10:for(;l<32;){if(0===o)break e;o--,u+=n[s++]<>>=7&l,l-=7&l,r.mode=27;break}for(;l<3;){if(0===o)break e;o--,u+=n[s++]<>>=1)){case 0:r.mode=14;break;case 1:if(j(r),r.mode=20,6!==t)break;u>>>=2,l-=2;break e;case 2:r.mode=17;break;case 3:e.msg="invalid block type",r.mode=30}u>>>=2,l-=2;break;case 14:for(u>>>=7&l,l-=7&l;l<32;){if(0===o)break e;o--,u+=n[s++]<>>16^65535)){e.msg="invalid stored block lengths",r.mode=30;break}if(r.length=65535&u,l=u=0,r.mode=15,6===t)break e;case 15:r.mode=16;case 16:if(d=r.length){if(o>>=5,l-=5,r.ndist=1+(31&u),u>>>=5,l-=5,r.ncode=4+(15&u),u>>>=4,l-=4,286>>=3,l-=3}for(;r.have<19;)r.lens[A[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,S={bits:r.lenbits},x=T(0,r.lens,0,19,r.lencode,0,r.work,S),r.lenbits=S.bits,x){e.msg="invalid code lengths set",r.mode=30;break}r.have=0,r.mode=19;case 19:for(;r.have>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<>>=_,l-=_,r.lens[r.have++]=b;else{if(16===b){for(z=_+2;l>>=_,l-=_,0===r.have){e.msg="invalid bit length repeat",r.mode=30;break}k=r.lens[r.have-1],d=3+(3&u),u>>>=2,l-=2}else if(17===b){for(z=_+3;l>>=_)),u>>>=3,l-=3}else{for(z=_+7;l>>=_)),u>>>=7,l-=7}if(r.have+d>r.nlen+r.ndist){e.msg="invalid bit length repeat",r.mode=30;break}for(;d--;)r.lens[r.have++]=k}}if(30===r.mode)break;if(0===r.lens[256]){e.msg="invalid code -- missing end-of-block",r.mode=30;break}if(r.lenbits=9,S={bits:r.lenbits},x=T(D,r.lens,0,r.nlen,r.lencode,0,r.work,S),r.lenbits=S.bits,x){e.msg="invalid literal/lengths set",r.mode=30;break}if(r.distbits=6,r.distcode=r.distdyn,S={bits:r.distbits},x=T(F,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,S),r.distbits=S.bits,x){e.msg="invalid distances set",r.mode=30;break}if(r.mode=20,6===t)break e;case 20:r.mode=21;case 21:if(6<=o&&258<=h){e.next_out=a,e.avail_out=h,e.next_in=s,e.avail_in=o,r.hold=u,r.bits=l,R(e,c),a=e.next_out,i=e.output,h=e.avail_out,s=e.next_in,n=e.input,o=e.avail_in,u=r.hold,l=r.bits,12===r.mode&&(r.back=-1);break}for(r.back=0;g=(C=r.lencode[u&(1<>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,r.length=b,0===g){r.mode=26;break}if(32&g){r.back=-1,r.mode=12;break}if(64&g){e.msg="invalid literal/length code",r.mode=30;break}r.extra=15&g,r.mode=22;case 22:if(r.extra){for(z=r.extra;l>>=r.extra,l-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=23;case 23:for(;g=(C=r.distcode[u&(1<>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,64&g){e.msg="invalid distance code",r.mode=30;break}r.offset=b,r.extra=15&g,r.mode=24;case 24:if(r.extra){for(z=r.extra;l>>=r.extra,l-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){e.msg="invalid distance too far back",r.mode=30;break}r.mode=25;case 25:if(0===h)break e;if(d=c-h,r.offset>d){if((d=r.offset-d)>r.whave&&r.sane){e.msg="invalid distance too far back",r.mode=30;break}p=d>r.wnext?(d-=r.wnext,r.wsize-d):r.wnext-d,d>r.length&&(d=r.length),m=r.window}else m=i,p=a-r.offset,d=r.length;for(hd?(m=R[T+a[v]],A[I+a[v]]):(m=96,0),h=1<>S)+(u-=h)]=p<<24|m<<16|_|0,0!==u;);for(h=1<>=1;if(0!==h?(E&=h-1,E+=h):E=0,v++,0==--O[b]){if(b===w)break;b=t[r+a[v]]}if(k>>7)]}function U(e,t){e.pending_buf[e.pending++]=255&t,e.pending_buf[e.pending++]=t>>>8&255}function P(e,t,r){e.bi_valid>d-r?(e.bi_buf|=t<>d-e.bi_valid,e.bi_valid+=r-d):(e.bi_buf|=t<>>=1,r<<=1,0<--t;);return r>>>1}function Z(e,t,r){var n,i,s=new Array(g+1),a=0;for(n=1;n<=g;n++)s[n]=a=a+r[n-1]<<1;for(i=0;i<=t;i++){var o=e[2*i+1];0!==o&&(e[2*i]=j(s[o]++,o))}}function W(e){var t;for(t=0;t>1;1<=r;r--)G(e,s,r);for(i=h;r=e.heap[1],e.heap[1]=e.heap[e.heap_len--],G(e,s,1),n=e.heap[1],e.heap[--e.heap_max]=r,e.heap[--e.heap_max]=n,s[2*i]=s[2*r]+s[2*n],e.depth[i]=(e.depth[r]>=e.depth[n]?e.depth[r]:e.depth[n])+1,s[2*r+1]=s[2*n+1]=i,e.heap[1]=i++,G(e,s,1),2<=e.heap_len;);e.heap[--e.heap_max]=e.heap[1],function(e,t){var r,n,i,s,a,o,h=t.dyn_tree,u=t.max_code,l=t.stat_desc.static_tree,f=t.stat_desc.has_stree,c=t.stat_desc.extra_bits,d=t.stat_desc.extra_base,p=t.stat_desc.max_length,m=0;for(s=0;s<=g;s++)e.bl_count[s]=0;for(h[2*e.heap[e.heap_max]+1]=0,r=e.heap_max+1;r<_;r++)p<(s=h[2*h[2*(n=e.heap[r])+1]+1]+1)&&(s=p,m++),h[2*n+1]=s,u>=7;n>>=1)if(1&r&&0!==e.dyn_ltree[2*t])return o;if(0!==e.dyn_ltree[18]||0!==e.dyn_ltree[20]||0!==e.dyn_ltree[26])return h;for(t=32;t>>3,(s=e.static_len+3+7>>>3)<=i&&(i=s)):i=s=r+5,r+4<=i&&-1!==t?J(e,t,r,n):4===e.strategy||s===i?(P(e,2+(n?1:0),3),K(e,z,C)):(P(e,4+(n?1:0),3),function(e,t,r,n){var i;for(P(e,t-257,5),P(e,r-1,5),P(e,n-4,4),i=0;i>>8&255,e.pending_buf[e.d_buf+2*e.last_lit+1]=255&t,e.pending_buf[e.l_buf+e.last_lit]=255&r,e.last_lit++,0===t?e.dyn_ltree[2*r]++:(e.matches++,t--,e.dyn_ltree[2*(A[r]+u+1)]++,e.dyn_dtree[2*N(t)]++),e.last_lit===e.lit_bufsize-1},r._tr_align=function(e){P(e,2,3),L(e,m,z),function(e){16===e.bi_valid?(U(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):8<=e.bi_valid&&(e.pending_buf[e.pending++]=255&e.bi_buf,e.bi_buf>>=8,e.bi_valid-=8)}(e)}},{"../utils/common":41}],53:[function(e,t,r){"use strict";t.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},{}],54:[function(e,t,r){(function(e){!function(r,n){"use strict";if(!r.setImmediate){var i,s,t,a,o=1,h={},u=!1,l=r.document,e=Object.getPrototypeOf&&Object.getPrototypeOf(r);e=e&&e.setTimeout?e:r,i="[object process]"==={}.toString.call(r.process)?function(e){process.nextTick(function(){c(e)})}:function(){if(r.postMessage&&!r.importScripts){var e=!0,t=r.onmessage;return r.onmessage=function(){e=!1},r.postMessage("","*"),r.onmessage=t,e}}()?(a="setImmediate$"+Math.random()+"$",r.addEventListener?r.addEventListener("message",d,!1):r.attachEvent("onmessage",d),function(e){r.postMessage(a+e,"*")}):r.MessageChannel?((t=new MessageChannel).port1.onmessage=function(e){c(e.data)},function(e){t.port2.postMessage(e)}):l&&"onreadystatechange"in l.createElement("script")?(s=l.documentElement,function(e){var t=l.createElement("script");t.onreadystatechange=function(){c(e),t.onreadystatechange=null,s.removeChild(t),t=null},s.appendChild(t)}):function(e){setTimeout(c,0,e)},e.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),r=0;r>>32-s,b)}function md5cycle(x,k){var a=x[0],b=x[1],c=x[2],d=x[3];a+=(b&c|~b&d)+k[0]-680876936|0;a=(a<<7|a>>>25)+b|0;d+=(a&b|~a&c)+k[1]-389564586|0;d=(d<<12|d>>>20)+a|0;c+=(d&a|~d&b)+k[2]+606105819|0;c=(c<<17|c>>>15)+d|0;b+=(c&d|~c&a)+k[3]-1044525330|0;b=(b<<22|b>>>10)+c|0;a+=(b&c|~b&d)+k[4]-176418897|0;a=(a<<7|a>>>25)+b|0;d+=(a&b|~a&c)+k[5]+1200080426|0;d=(d<<12|d>>>20)+a|0;c+=(d&a|~d&b)+k[6]-1473231341|0;c=(c<<17|c>>>15)+d|0;b+=(c&d|~c&a)+k[7]-45705983|0;b=(b<<22|b>>>10)+c|0;a+=(b&c|~b&d)+k[8]+1770035416|0;a=(a<<7|a>>>25)+b|0;d+=(a&b|~a&c)+k[9]-1958414417|0;d=(d<<12|d>>>20)+a|0;c+=(d&a|~d&b)+k[10]-42063|0;c=(c<<17|c>>>15)+d|0;b+=(c&d|~c&a)+k[11]-1990404162|0;b=(b<<22|b>>>10)+c|0;a+=(b&c|~b&d)+k[12]+1804603682|0;a=(a<<7|a>>>25)+b|0;d+=(a&b|~a&c)+k[13]-40341101|0;d=(d<<12|d>>>20)+a|0;c+=(d&a|~d&b)+k[14]-1502002290|0;c=(c<<17|c>>>15)+d|0;b+=(c&d|~c&a)+k[15]+1236535329|0;b=(b<<22|b>>>10)+c|0;a+=(b&d|c&~d)+k[1]-165796510|0;a=(a<<5|a>>>27)+b|0;d+=(a&c|b&~c)+k[6]-1069501632|0;d=(d<<9|d>>>23)+a|0;c+=(d&b|a&~b)+k[11]+643717713|0;c=(c<<14|c>>>18)+d|0;b+=(c&a|d&~a)+k[0]-373897302|0;b=(b<<20|b>>>12)+c|0;a+=(b&d|c&~d)+k[5]-701558691|0;a=(a<<5|a>>>27)+b|0;d+=(a&c|b&~c)+k[10]+38016083|0;d=(d<<9|d>>>23)+a|0;c+=(d&b|a&~b)+k[15]-660478335|0;c=(c<<14|c>>>18)+d|0;b+=(c&a|d&~a)+k[4]-405537848|0;b=(b<<20|b>>>12)+c|0;a+=(b&d|c&~d)+k[9]+568446438|0;a=(a<<5|a>>>27)+b|0;d+=(a&c|b&~c)+k[14]-1019803690|0;d=(d<<9|d>>>23)+a|0;c+=(d&b|a&~b)+k[3]-187363961|0;c=(c<<14|c>>>18)+d|0;b+=(c&a|d&~a)+k[8]+1163531501|0;b=(b<<20|b>>>12)+c|0;a+=(b&d|c&~d)+k[13]-1444681467|0;a=(a<<5|a>>>27)+b|0;d+=(a&c|b&~c)+k[2]-51403784|0;d=(d<<9|d>>>23)+a|0;c+=(d&b|a&~b)+k[7]+1735328473|0;c=(c<<14|c>>>18)+d|0;b+=(c&a|d&~a)+k[12]-1926607734|0;b=(b<<20|b>>>12)+c|0;a+=(b^c^d)+k[5]-378558|0;a=(a<<4|a>>>28)+b|0;d+=(a^b^c)+k[8]-2022574463|0;d=(d<<11|d>>>21)+a|0;c+=(d^a^b)+k[11]+1839030562|0;c=(c<<16|c>>>16)+d|0;b+=(c^d^a)+k[14]-35309556|0;b=(b<<23|b>>>9)+c|0;a+=(b^c^d)+k[1]-1530992060|0;a=(a<<4|a>>>28)+b|0;d+=(a^b^c)+k[4]+1272893353|0;d=(d<<11|d>>>21)+a|0;c+=(d^a^b)+k[7]-155497632|0;c=(c<<16|c>>>16)+d|0;b+=(c^d^a)+k[10]-1094730640|0;b=(b<<23|b>>>9)+c|0;a+=(b^c^d)+k[13]+681279174|0;a=(a<<4|a>>>28)+b|0;d+=(a^b^c)+k[0]-358537222|0;d=(d<<11|d>>>21)+a|0;c+=(d^a^b)+k[3]-722521979|0;c=(c<<16|c>>>16)+d|0;b+=(c^d^a)+k[6]+76029189|0;b=(b<<23|b>>>9)+c|0;a+=(b^c^d)+k[9]-640364487|0;a=(a<<4|a>>>28)+b|0;d+=(a^b^c)+k[12]-421815835|0;d=(d<<11|d>>>21)+a|0;c+=(d^a^b)+k[15]+530742520|0;c=(c<<16|c>>>16)+d|0;b+=(c^d^a)+k[2]-995338651|0;b=(b<<23|b>>>9)+c|0;a+=(c^(b|~d))+k[0]-198630844|0;a=(a<<6|a>>>26)+b|0;d+=(b^(a|~c))+k[7]+1126891415|0;d=(d<<10|d>>>22)+a|0;c+=(a^(d|~b))+k[14]-1416354905|0;c=(c<<15|c>>>17)+d|0;b+=(d^(c|~a))+k[5]-57434055|0;b=(b<<21|b>>>11)+c|0;a+=(c^(b|~d))+k[12]+1700485571|0;a=(a<<6|a>>>26)+b|0;d+=(b^(a|~c))+k[3]-1894986606|0;d=(d<<10|d>>>22)+a|0;c+=(a^(d|~b))+k[10]-1051523|0;c=(c<<15|c>>>17)+d|0;b+=(d^(c|~a))+k[1]-2054922799|0;b=(b<<21|b>>>11)+c|0;a+=(c^(b|~d))+k[8]+1873313359|0;a=(a<<6|a>>>26)+b|0;d+=(b^(a|~c))+k[15]-30611744|0;d=(d<<10|d>>>22)+a|0;c+=(a^(d|~b))+k[6]-1560198380|0;c=(c<<15|c>>>17)+d|0;b+=(d^(c|~a))+k[13]+1309151649|0;b=(b<<21|b>>>11)+c|0;a+=(c^(b|~d))+k[4]-145523070|0;a=(a<<6|a>>>26)+b|0;d+=(b^(a|~c))+k[11]-1120210379|0;d=(d<<10|d>>>22)+a|0;c+=(a^(d|~b))+k[2]+718787259|0;c=(c<<15|c>>>17)+d|0;b+=(d^(c|~a))+k[9]-343485551|0;b=(b<<21|b>>>11)+c|0;x[0]=a+x[0]|0;x[1]=b+x[1]|0;x[2]=c+x[2]|0;x[3]=d+x[3]|0}function md5blk(s){var md5blks=[],i;for(i=0;i<64;i+=4){md5blks[i>>2]=s.charCodeAt(i)+(s.charCodeAt(i+1)<<8)+(s.charCodeAt(i+2)<<16)+(s.charCodeAt(i+3)<<24)}return md5blks}function md5blk_array(a){var md5blks=[],i;for(i=0;i<64;i+=4){md5blks[i>>2]=a[i]+(a[i+1]<<8)+(a[i+2]<<16)+(a[i+3]<<24)}return md5blks}function md51(s){var n=s.length,state=[1732584193,-271733879,-1732584194,271733878],i,length,tail,tmp,lo,hi;for(i=64;i<=n;i+=64){md5cycle(state,md5blk(s.substring(i-64,i)))}s=s.substring(i-64);length=s.length;tail=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];for(i=0;i>2]|=s.charCodeAt(i)<<(i%4<<3)}tail[i>>2]|=128<<(i%4<<3);if(i>55){md5cycle(state,tail);for(i=0;i<16;i+=1){tail[i]=0}}tmp=n*8;tmp=tmp.toString(16).match(/(.*?)(.{0,8})$/);lo=parseInt(tmp[2],16);hi=parseInt(tmp[1],16)||0;tail[14]=lo;tail[15]=hi;md5cycle(state,tail);return state}function md51_array(a){var n=a.length,state=[1732584193,-271733879,-1732584194,271733878],i,length,tail,tmp,lo,hi;for(i=64;i<=n;i+=64){md5cycle(state,md5blk_array(a.subarray(i-64,i)))}a=i-64>2]|=a[i]<<(i%4<<3)}tail[i>>2]|=128<<(i%4<<3);if(i>55){md5cycle(state,tail);for(i=0;i<16;i+=1){tail[i]=0}}tmp=n*8;tmp=tmp.toString(16).match(/(.*?)(.{0,8})$/);lo=parseInt(tmp[2],16);hi=parseInt(tmp[1],16)||0;tail[14]=lo;tail[15]=hi;md5cycle(state,tail);return state}function rhex(n){var s="",j;for(j=0;j<4;j+=1){s+=hex_chr[n>>j*8+4&15]+hex_chr[n>>j*8&15]}return s}function hex(x){var i;for(i=0;i>16)+(y>>16)+(lsw>>16);return msw<<16|lsw&65535}}if(typeof ArrayBuffer!=="undefined"&&!ArrayBuffer.prototype.slice){(function(){function clamp(val,length){val=val|0||0;if(val<0){return Math.max(val+length,0)}return Math.min(val,length)}ArrayBuffer.prototype.slice=function(from,to){var length=this.byteLength,begin=clamp(from,length),end=length,num,target,targetArray,sourceArray;if(to!==undefined){end=clamp(to,length)}if(begin>end){return new ArrayBuffer(0)}num=end-begin;target=new ArrayBuffer(num);targetArray=new Uint8Array(target);sourceArray=new Uint8Array(this,begin,num);targetArray.set(sourceArray);return target}})()}function toUtf8(str){if(/[\u0080-\uFFFF]/.test(str)){str=unescape(encodeURIComponent(str))}return str}function utf8Str2ArrayBuffer(str,returnUInt8Array){var length=str.length,buff=new ArrayBuffer(length),arr=new Uint8Array(buff),i;for(i=0;i>2]|=buff.charCodeAt(i)<<(i%4<<3)}this._finish(tail,length);ret=hex(this._hash);if(raw){ret=hexToBinaryString(ret)}this.reset();return ret};SparkMD5.prototype.reset=function(){this._buff="";this._length=0;this._hash=[1732584193,-271733879,-1732584194,271733878];return this};SparkMD5.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash.slice()}};SparkMD5.prototype.setState=function(state){this._buff=state.buff;this._length=state.length;this._hash=state.hash;return this};SparkMD5.prototype.destroy=function(){delete this._hash;delete this._buff;delete this._length};SparkMD5.prototype._finish=function(tail,length){var i=length,tmp,lo,hi;tail[i>>2]|=128<<(i%4<<3);if(i>55){md5cycle(this._hash,tail);for(i=0;i<16;i+=1){tail[i]=0}}tmp=this._length*8;tmp=tmp.toString(16).match(/(.*?)(.{0,8})$/);lo=parseInt(tmp[2],16);hi=parseInt(tmp[1],16)||0;tail[14]=lo;tail[15]=hi;md5cycle(this._hash,tail)};SparkMD5.hash=function(str,raw){return SparkMD5.hashBinary(toUtf8(str),raw)};SparkMD5.hashBinary=function(content,raw){var hash=md51(content),ret=hex(hash);return raw?hexToBinaryString(ret):ret};SparkMD5.ArrayBuffer=function(){this.reset()};SparkMD5.ArrayBuffer.prototype.append=function(arr){var buff=concatenateArrayBuffers(this._buff.buffer,arr,true),length=buff.length,i;this._length+=arr.byteLength;for(i=64;i<=length;i+=64){md5cycle(this._hash,md5blk_array(buff.subarray(i-64,i)))}this._buff=i-64>2]|=buff[i]<<(i%4<<3)}this._finish(tail,length);ret=hex(this._hash);if(raw){ret=hexToBinaryString(ret)}this.reset();return ret};SparkMD5.ArrayBuffer.prototype.reset=function(){this._buff=new Uint8Array(0);this._length=0;this._hash=[1732584193,-271733879,-1732584194,271733878];return this};SparkMD5.ArrayBuffer.prototype.getState=function(){var state=SparkMD5.prototype.getState.call(this);state.buff=arrayBuffer2Utf8Str(state.buff);return state};SparkMD5.ArrayBuffer.prototype.setState=function(state){state.buff=utf8Str2ArrayBuffer(state.buff,true);return SparkMD5.prototype.setState.call(this,state)};SparkMD5.ArrayBuffer.prototype.destroy=SparkMD5.prototype.destroy;SparkMD5.ArrayBuffer.prototype._finish=SparkMD5.prototype._finish;SparkMD5.ArrayBuffer.hash=function(arr,raw){var hash=md51_array(new Uint8Array(arr)),ret=hex(hash);return raw?hexToBinaryString(ret):ret};return SparkMD5}); diff --git a/pack_icon.png b/pack_icon.png new file mode 100644 index 0000000..0059f1b Binary files /dev/null and b/pack_icon.png differ